jQuery(document).ready(function () {    
			       
				jQuery('#nav li').hover(   
			        function () {   
			            //show its submenu   
			            jQuery('ul', this).fadeIn(250);   
			  
			        },    
			        function () {   
			            //hide its submenu   
			            jQuery('ul', this).fadeOut(250);            
			        }   
			    );   
			       
			});   