$(document).ready(function(){
						   
	$("div#nav").find("a[href='"+window.location.pathname+"']").each(function(){
		$(this).addClass("on")
	})
	
	$("div#nav ul li").mouseenter(function() {
		$(this).find("ul.subnav").slideDown(100).show();
	});
	
	$("div#nav ul li").mouseleave(function() {
			$(this).find("ul.subnav").delay(300).slideUp(100); //When the mouse hovers out of the subnav, move it back up		
	});

});
