$(document).ready(function(){ 
	$("li.nav").hoverIntent({
		sensitivity: 1, 
		interval: 5, 
		over: showMe, 
		timeout: 200, 
		out: hideMe
	});
		function showMe(){ $(this).children('.menu').animate({"opacity": "show"}, "fast");}
		function hideMe(){ $(this).children('.menu').animate({"opacity": "hide"}, "fast");}

}); 