function setSubmenu() {
		var theURL_ar = window.location.href.split("/");
		var thisPage = theURL_ar[theURL_ar.length-1];
		thisPage = thisPage.split(".")
		
		elem = document.getElementById(thisPage[0]);
		if (elem) {
			elem.className = "subSelected";
		}
}