// JavaScript Document
$(document).ready(function(){
	$("ul.topnav li span").hover(function(){
		// Drop down the subnav
		$(this).parent().find("ul.subnav").addClass("subhover").stop(true,true).slideDown('fast');
		$(this).parent().hover(function(){}, function(){
			// When the mouse hovers out of the subnav, move it back up
			$(this).parent().find("ul.subnav").removeClass("subhover").slideUp('slow');
		});
	});
});
