jQuery(function($) { 

	$(document).ready(function() {
			   
	   // Nav
			
			//$("#nav ul li ul").hide();
			$("#nav ul li").hoverIntent(
				function(){
			        $(this).addClass('hover');
			        //$(this).children('ul').show();
			    },
			    function(){
			       $(this).removeClass('hover');
			       //$(this).children('ul').slideUp('fast');
			    }
			);
	    
	});	// END $(document).ready(function()
});	// jQuery(function($) { 
