$(document).ready(function(){
	
	$("#menu a").hover (function() { 
	
		$(this).parent().find("ul.subnav").slideDown('fast').fadeIn(50).show(); //Drop down the subnav on click
//		$(this).parent().find("ul.subnav").fadeIn('normal'); //Drop down the subnav on click
			$(this).addClass("hover"); 

		$(this).parent().hover(function() {										
		}, function(){	

			if($(this).parent().find("ul.subnav").slideUp(5)) { //When the mouse hovers out of the subnav, move it back up
//			if($(this).parent().find("ul.subnav").fadeOut(5)) { //When the mouse hovers out of the subnav, move it back up
				
			$(this).parent().find('a.hover').removeClass("hover");
			}

		});
	});

});
