$(window).ready(function() { 
	
	$("#nav .opener").mouseenter(function(){
		$(this).parent().find("li").show();
		$(this).hide();
	});
	
	$("#nav .showli").parent().mouseleave(function(){
		$(this).find("li[class!=showli]").hide();
		$(this).find(".opener").show();
	});
	 
});
