// JavaScript Document
$(document).ready(function(){
	$("ul.topnav li a").hover(function(){
		$(this).parent().addClass("highlight");
		$(this).parent().find("ul.subnav").slideDown('fast').show();
		
		$(this).parent().hover(function() {
		}, function(){
			$(this).removeClass("highlight");
			$(this).find("ul.subnav").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
		});
	});
	
	
});

