$(document).ready(function(){
	$('.tip_question')
	.bind('mouseover', function() {
	  $(this).attr('src', '/imgs/styles/tip_question_focus.gif');
	}).bind('mouseleave', function() {
	  $(this).attr('src', '/imgs/styles/tip_question.gif');
	});
	
	$('#google-group-tip').attr('title', $('#google-group-tip').attr('title') + ' А также wiki-раздел <a href=\'/wiki/index.php/Synfig_Studio\'>Synfig Studio</a>');
	
	$('img[title].tip_question').qtip({
		style:
		{
			border:
			{
				width: 2,
				radius: 4,
				color: '#FFAB74'
			},
			background: '#FFFFFF',
			color: '#021E08',
			padding: 10,
			textAlign: 'center',
			fontSize: 11,
			tip: true
		},
		position:
		{
			corner:
			{
				tooltip: 'bottomLeft',
				target: 'topRight'
			}
		},
		hide:
		{
			fixed: true
		},
	});
});
