jQuery(document).ready(function(){

	jQuery("div#nav_wrapper div#nav ul.nav_left li").hover(
		function(){jQuery("ul", this).css("display", "block");},
		function(){jQuery("ul", this).css("display", "none");}
	);
	
});