$(document).ready(function(){

	$("ul.topnav li").hover(function() { //When mouse hovers on topnav...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul.subnav").slideDown(100).show(); //Drop down the subnav on click
		
		$(this).hover(function() {
		}, function(){
			$(this).find("ul.subnav").slideUp(50); //When the mouse hovers out of the subnav, move it back up
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).find("ul.subnav").parent().find("a").addClass("subhover"); //On hover over, add class "subhover"
		}, function(){	//On Hover Out
			$(this).find("ul.subnav").parent().find("a").removeClass("subhover"); //On hover out, remove class "subhover"
	});
});


