jQuery(document).ready(function(){
	jQuery("div[id='nav']~div").each(function(i){jQuery(this).hide();});
	jQuery("div[id='nav'] ul").find("li").hover(function(event){
		
		jQuery("div[id='nav']~div").each(function(i){jQuery(this).hide();});
				event=event=(event)?event:window.event; 
				var src= event.srcElement ? event.srcElement : event.target;
				var divItem=jQuery("#"+jQuery(src).parent().attr("class")+"_son");
				divItem.slideDown(300).fadeIn(300).find("ul li").addClass("son_item");
				divItem.hover(null,function(){jQuery(this).hide();});
		    },null);
		});
	function toUrl(url){window.location.href=url;}
