$(document).ready(function() {

	$(".topSubmenu").stop().hide();

	$(".topFullBlock").mouseover(function(){
		
		$(".topFullBlock").stop().animate({ height: "123px" }, 300, function(){$(".topSubmenu").stop().show(50)});
		$(".headerWrap").stop().animate({ height: "123px" }, 300 );
		$(".header").stop().animate({ height: "123px" }, 300 );
		$(".logo").stop().animate({ top: "75px" }, 300);
		
	}).mouseleave(function(){

		$(".topSubmenu").stop().hide();
		$(".topFullBlock").stop().animate({  height: "58px" }, 200 );
		$(".headerWrap").stop().animate({  height: "58px" }, 200 );
		$(".header").stop().animate({  height: "58px" }, 200 );
		$(".logo").stop().animate({ top: "10px" }, 200 );
			
	});
	
});
