$(document).ready(function() {
	//$("#nav a").each(function() {
	//	if(this.href == "http://"+window.location.hostname+window.location.pathname) {//allows for query and hash variables in URI
	//		$(this).addClass("active");
	//		$(this).parents("ul").css("display", "block");
	//		$(this).parents("li").eq(0).children("ul").css("display", "block");
	//	}
	//});
	$("#nav>li").hover(function() {
		$(this).addClass("open");
		if($(this).children("ul").length>0) {
			$(this).parents("#nav").addClass("hover");
		}
	}, function() {
		$(this).removeClass("open");
		$(this).parents("#nav").removeClass("hover");
	});
	if($(".subpage").length>0) {
		$("body").addClass("subpage");
	}
});