$(document).ready(function(){
	$("#nav ul li").has("ul").addClass("nested");
	$("#nav ul li").mouseenter(function() {
		if ($(this).hasClass("nested") && !$(this).find("ul").hasClass("opened")) {
			$(this).find("ul").addClass("opened");
			$(this).find("ul").show(0, function(){});
			$(this).mouseleave(
					function(){
						$(this).find("ul").hide(0, function(){
							$(this).removeClass("opened");
						});
					});
		}
	});
	
	$("#nav ul li").mouseenter(function() {
		//
	});
}); 