


  $(function(){
	   $(".menu ul li:has(ul)").hover(function(){
		    $(this).children("ul").stop(true,true).slideDown(0);
        
		  
        },function(){
		$(this).children("ul").stop(true,true).slideUp(0);
       
		});
		

});


