$(function() {
			// If no JS CSS menu will still work
			$("#menu2").removeClass("cssonly");
			
			// Find subnav menus and slide them down
			$("#menu2 li a").hover(function(){ 
				$(this).parent().find("ul.subnav").slideDown(400);
				$(this).parent().hover(function() {
				}, function() {
					// On hovering out slide subnav menus back up
					$(this).parent().find("ul.subnav").slideUp(400);
				})
			});
		});
