jQuery(document).ready(function(){
    
    
	jQuery("#navigate .center  .ul1 .li1").each(function(){
									
		jQuery(this).hover(function(){ 
		    
			jQuery(this).find("ul").slideDown("normal");
			
		},function(){
			jQuery(this).find("ul").slideUp("normal");
			
		});	
		
	})
});


