// JavaScript Document
function setMenuStyle() {
	var pageID = window.location.href.substring(window.location.href.indexOf(".com/")+5);
	// Use only parent folder to determine active section of web site
	var pageID = pageID.substring(0,pageID.indexOf("/"));
	if (pageID == null || pageID == "") {
		pageID = "index.html";
	}
	var menuObject = document.getElementById(pageID);
	if (menuObject) {
		menuObject.className = "menuSelected";
	}
}