function highlightActive()
{
	$(".highlight + ul").addClass("active");	
}

$(document).ready(function() {
	
	highlightActive(); // Highlight the subnav
	
	$("#navigation li.mainNav").hover(function(){
		$(".active").removeClass("active");
		$(".highlight").removeClass("highlight");
		$(".current").removeClass("current");
		$(this).children("a").addClass("highlight");
		$(this).children("ul").addClass("active");	
		},function(){
		// Do Nothing
		}
	);
});
