	 var vm=0;
	 
	 $(document).ready(function(){

        	$.ajaxSetup( { cache: false, dataType: "html"});
		
		//Подводим мышь к каталогу
		$("#vmenu0").hover(function(){
			if(vm==0)
			{
                //alert(document.body.clientHeight + "," + document.body.scrollHeight);
                h=document.body.scrollHeight-233;
				$("#vmenu1").height(h);
				$("#vmenu1").slideDown();
		      	$("#vmenu1").animate({ backgroundColor: "white" }, "normal");
				$("#vmenu2").fadeIn();
		      	$("#vmenu2").animate({ backgroundColor: "white" }, "normal");
				//$("#catalog").animate({ backgroundColor: "white" }, "slow");
				vm=1;
			}
		},function(){
		});
		
		
		//Убираем мышь с панели каталога
		$("#catbar").hover(function(){
		},function(){
			if(vm==1)
			{
				$("div.vmenu").fadeOut("normal", function(){
					$("div.vmenu").css("background-color", "#E7C66E");
				});
				vm=0;
			}
			//$("#catalog").animate({ backgroundColor: "#E7C66E" }, "normal");
		});
		

	 }); //ready()
