

$(document).ready(function(){
	$("ul.main-nav li").hover(function() { //When trigger is clicked...
	$(this).find("ul.subnav").show(); //Drop down the subnav on click
	$(this).hover(function() {
	}, function(){
		$(this).find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
	});
	}).hover(function() {
	$(this).addClass("subhover"); //On hover over, add class "subhover"
	}, function(){ //On Hover Out
	$(this).removeClass("subhover"); //On hover out, remove class "subhover"
	});
});
