$(document).ready( function() {
	$("#nav2 ul").find("li").each( function() {
																			
		if ($(this).find('ul').size() > 0) {
			$(this).addClass('has_more');	
		}
	});
			
	$("#nav2 ul").find("li").hover( function() {
		
		//alert($(this).attr("class"));
		if($(this).parent().parent().attr("id") != "dont_touch_this_ul")
		{	
												 
			$(this).addClass("hover");
			$(this).children("#nav2 a").addClass("hover");
			$(this).children("ul").show();	
		
		}
	},function(){
		//alert($(this).parent().attr("class"));
		if($(this).parent().attr("id") != "dont_touch_this_ul")
		{	
			$(this).children("ul").hide();
			$(this).children("#nav2 a").removeClass("hover");
			$(this).removeClass("hover");
		}
		
	});
											 
});