$(document).ready(function(){
 
 
//-----------
	$("#rightmenu li").mouseenter(function(){
		offset=$(this).offset();
		x=offset.left;
		y=offset.top-3;
		w=$(this).find("a").width()+32;
		$("#rightpodlojka").animate({"left":x, "top":y, "width":w}, 100);
	});
	$("#rightmenu").mouseenter(function(){
		$("#rightpodlojka").fadeIn(500);
	}).mouseleave(function(){
		$("#rightpodlojka").fadeOut(500);
	});
//-----------------	
	$("#topmenu li").mouseenter(function(){
		offset=$(this).offset();
		x=offset.left-10;
		y=offset.top-6;
		w=$(this).find("a").width()+24;
		$("#toppodlojka").animate({"left":x, "top":y, "width":w}, 100);
	});
	$("#topmenu").mouseenter(function(){
		$("#toppodlojka").fadeIn(500);
	}).mouseleave(function(){
		$("#toppodlojka").fadeOut(500);
	});
//----------------- 
/*
	el=$(".folderproducts");
	el.mouseenter(function(){
		el.not(this).css("opacity", 0.4);
	}).mouseleave(function(){
		el.not(this).css("opacity", 1);
	});
*/
	
	
	
	
});
function leftmenu(){
	rzm=document.getElementById("showfinder").offsetWidth;
	if(rzm==0){
		$("#tdshowfinder").animate({"width":"120px"}, 700);
		$("#showfinder").show(700, function(){$("#leftarr").html("&larr;");});
	}else{
		$("#tdshowfinder").animate({"width":"1px"}, 700);
		$("#showfinder").hide(700, function(){$("#leftarr").html("&rarr;");});
	}
}









