$(document).ready(function(){	
	$("ul.topnav li").mouseover(function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul.subnav").fadeTo(0,.99).show(); //Drop down the subnav on click

		$(this).hover(function() {
		}, function(){
			$(this).parent().find("ul.subnav").fadeTo(0,100).hide(); //When the mouse hovers out of the subnav, move it back up
		});
	});

});
