function highLight() {
	var menulist_root = document.getElementById("menulist_root");
	var links = menulist_root.getElementsByTagName("a");
	for (var i=0; i<links.length; i++) {
		var urls = links[i].getAttribute("href");

		tmpHPage = document.location.href.split( "/" );
		thisHPage = tmpHPage[ tmpHPage.length-1 ]; 
		if ( urls == thisHPage) {
			links[i].className = "active"
		}
	}
}

window.onload = function() {
	highLight() 
}
