// JavaScript Document
$(document).ready(function(){

	$("ul.headnav li").hover(function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul.headnav_sub").slideDown(400).show(); //Drop down the subnav on click

		$(this).hover(function() {
		}, function(){
			$(this).find("ul.headnav_sub").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
		});
	});

});

