// JavaScript Document
jQuery(function(){
		   

jQuery("div.down").mouseover(function(){
		jQuery("div.down ul").hide();
		jQuery(this).find("ul").show();
								   
								   
	})



jQuery("div.down ul").mouseout(function(){
		jQuery("div.down ul").hide();
		
								   
								   
	})
		   
		   
		   
		   
		   
		   })

