jQuery(document).ready(function(){
	
	
	jQuery("div#navi_wrap ul.left li").hover(
		function(){jQuery("ul", this).css("display", "block");},
		function(){jQuery("ul", this).css("display", "none");}
	);
	
});