
	jQuery(document).ready(function () {	
		
		jQuery('.nav ul li').hover(
			function () {
				//show its submenu
				jQuery('ul', this).slideDown(150);
	
			}, 
			function () {
				//hide its submenu
				jQuery('ul', this).slideUp(250);			
			}
		);
		
	});

