$(document).ready(function(){
	//$("ul#navmenu ul, ul#navmenu ul ul, ul#navmenu ul ul ul, ul#navmenu ul ul ul ul").hide();
	
	$("ul#navmenu a").each(function(){
		if ($(this).attr("href") == location.pathname) {
			
			$(this).addClass("current");
			$(this).parents("ul").show();
			$(this).next("ul").show();
			$(this).next("ul").addClass("addBorder");
			
			$(this).parent().parent().prev("a").addClass("current1");
			$(this).parent().parent().addClass("addBorder");
			
			if($(this).attr("id")) {
			
			var bodyid = $(this).attr("id");
			bodyid = bodyid.substr(0,(bodyid.length -4));
			$("body").attr("id", bodyid);
			}

		}
	});
	
	
});