$(document).ready(function(){
	$("ul.topnav li ul.subnav").hide();
	$("ul.topnav li a.topLink").click(function(event) { //When trigger is hovered over...
		event.preventDefault();

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).parent("li").find("ul.subnav").css('opacity', 0).slideToggle("fast").animate({opacity: 1}, 600);

	//Following events are applied to the trigger (Hover events for the trigger)
	});

});
