$(document).ready(function () {	
	$('.nav>li').hover(
		function () {
			
			$('ul', this).show();
			 return false; 

		}, 
		function () {
		
			$('ul', this).hide();		
			 
		}
	);
	
});
