jQuery(document).ready( function($) {
	$("#menu ul li").mouseover(function() { //When trigger is clicked...
		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul").slideDown('fast').show(); //Drop down the subnav on click

		$(this).hover(function() {
		}, function(){
            $(this).find("ul").stop(false,true);
			$(this).find("ul").hide(); //When the mouse hovers out of the subnav, move it back up
		});

	});

});







