		$(document).ready(function() {

$(".navi ul li").hover(function(){
			 $(this).find("ul:first").show();
			 		  
	  },function(){
			  $(this).find("ul:first").hide();
			  
	});
		});
