		$(document).ready(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").stop(true, true).slideDown(200);
				$(this).parent().hover(function() {
				}, function() {
					// On hovering out slide subnav menus back up
					$(this).parent().find("ul.subnav").slideUp(100);
				})
			});
		});