$(document).ready(function() {

	$("#navi ul li a").hover(function() { 
		$(this).parent().find("ul.dd").fadeIn('fast').show();
		$(this).parent().hover(function() {  
		}, function(){  
	  	$(this).parent().find("ul.dd").fadeOut('slow');
	  }); 
	}); 
	
}); 
