function thispage() {
	var imenu = document.getElementById("menu");
	
	var ilink = imenu.getElementsByTagName("a");
	
	for (var x=0; x<ilink.length; x++) {
		if (ilink[x].href == location.href) {
			ilink[x].setAttribute("className","thispage");  // FOR IE
			ilink[x].setAttribute("class","thispage");  // FOR ALL OTHERS
//			document.write(ilink[x]);
//			document.write(location.href);
		}
	}
}

window.onload = thispage;