$(document).ready( function() {
	/* Main menu background colors */
	$('.navigation-main-common-li').bind('mouseenter', function() { 
		$('.navigation-main-common-li').removeClass('navigation-main-common-li-bgcolor');
		$(this).addClass('navigation-main-common-li-bgcolor');
	}).bind('mouseleave', function() {
		$('.navigation-main-common-li').removeClass('navigation-main-common-li-bgcolor');
	});
	/* End of Main menu background colors */
	
	$('#rub_whereami').attr('title', $('#rub_whereami').attr('title') + ' <a href=\'/sitemap/\'>Карта сайта</a>');
	
	$('.path_steps img[title]').qtip({
		style:
		{
			border:
			{
				width: 2,
				radius: 4,
				color: '#FFAB74'
			},
			background: '#FFFFFF',
			color: '#021E08',
			padding: 10,
			textAlign: 'center',
			fontSize: 11,
			tip: true
		},
		position:
		{
			corner:
			{
				tooltip: 'topLeft',
				target: 'bottomRight'
			}
		}
	});
	
	$('#navigation-main a[title]').qtip({
		style:
		{
			border:
			{
				width: 2,
				radius: 4,
				color: '#1067BF'
			},
			background: '#FFFFFF',
			color: '#021E08',
			padding: 10,
			textAlign: 'center',
			fontSize: 11,
			tip: true
		},
		position:
		{
			corner:
			{
				tooltip: 'topLeft',
				target: 'bottomMiddle'
			}
		},
		hide:
		{
			fixed: true
		},
	});
});
