$(document).ready(function() {
	$("li.active").find("ul").show(); //SHOW SELECTED
	$("div.navigation ul li").hover(function() { //Hover over event on list item
		$(this).css('active'); //hover state level 1
		$("li.active").find("ul").hide(); //HIDE SELECTED
		$(this).find("ul").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css(''); //unhover state level 1
		$(this).find("ul").hide(); //Hide the subnav
		$("li.active").find("ul").show(); //SHOW SELECTED
	});
});
