$(function(){
	// hover for main nav (not current)
	$('#nav li#navHome a:not(.current)')
		.css({backgroundColor: "#cecece"})
		.mouseover(function(){
			$(this).stop().animate({backgroundColor: "#990000"}, 200);
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundColor: "#cecece"}, 200);
		})
	$('#nav li#navWhat a:not(.current)')
		.css({backgroundColor: "#cecece"})
		.mouseover(function(){
			$(this).stop().animate({backgroundColor: "#666600"}, 200);
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundColor: "#cecece"}, 200);
		})
			$('#nav li#navWhat ul li a:not(.current)')
				.css({backgroundColor: "#dfdfdf"})
				.mouseover(function(){
					$(this).stop().animate({backgroundColor: "#666600"}, 200);
				})
				.mouseout(function(){
					$(this).stop().animate({backgroundColor: "#dfdfdf"}, 200);
				})
	$('#nav li#navNews a:not(.current)')
		.css({backgroundColor: "#cecece"})
		.mouseover(function(){
			$(this).stop().animate({backgroundColor: "#006699"}, 200);
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundColor: "#cecece"}, 200);
		})
	$('#nav li#navContact a:not(.current)')
		.css({backgroundColor: "#cecece"})
		.mouseover(function(){
			$(this).stop().animate({backgroundColor: "#cc3300"}, 200);
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundColor: "#cecece"}, 200);
		})
			$('#nav li#navContact ul li a:not(.current)')
				.css({backgroundColor: "#dfdfdf"})
				.mouseover(function(){
					$(this).stop().animate({backgroundColor: "#cc3300"}, 200);
				})
				.mouseout(function(){
					$(this).stop().animate({backgroundColor: "#dfdfdf"}, 200);
				})
	// show sub-nav on hover
	$('#nav li#navWhat')
		.mouseover(function(){
			$('#nav li#navWhat ul:not(.open)').show();
		})
		.mouseout(function(){
			$('#nav li#navWhat ul:not(.open)').hide();
		})
	$('#nav li#navContact')
		.mouseover(function(){
			$('#nav li#navContact ul:not(.open)').show();
		})
		.mouseout(function(){
			$('#nav li#navContact ul:not(.open)').hide();
		})
});