$(document).ready(function(){
	$("#main-menu-list li:gt(0)").hover(
		function () {
			$(this).addClass('hover');
			$(this).find('img').attr('src', 'images/main-menu-item-mark-on.png');
			$(this).find('.sub-menu').show();
		},
		function () {
			$(this).removeClass('hover');
			$(this).find('img').attr('src', 'images/main-menu-item-mark.png');
			$(this).find('.sub-menu').hide();
		}
	);
	$(".promo-tab").hover(
		function () {
			$(this).toggleClass('active');
			$('#promo-main img').attr('src', 'images/'+$(this).attr('id')+'.jpg');
		},
		function () {
			$(this).toggleClass('active');
			$('#promo-main img').attr('src', 'images/promo-image.jpg');
		}
	);
	$('#language-block').click(function() {
		$('#language-list').css('visibility', 'visible');
		$('#language-list').mouseleave(function() {
			$('#language-list').css('visibility', 'hidden');
		});
	});
});
