jQuery().ready(function(){		
		$('.nav li.level1:not(.current)').mouseover(function() {	
			$(this).parent().children('li').removeClass('navhover');
			$(this).addClass('navhover');		
		});
		$('.nav li.level1').mouseout(function() {	
			$(this).removeClass('navhover');		
		});
	});