$(document).ready(function(){
	$(".nav ul li").mouseover(function() {
		if ($(this).children().is("ul") & !$(this).find("ul").hasClass("opened")) {
			$(this).find("ul").addClass("opened");
			$(this).find("ul").show('fast', function(){});
			$(this).hover(
					function(){}, 
					function(){
						$(this).find("ul").hide('fast', function(){
							$(this).removeClass("opened");
						});
					});
		}
	});  
});  
