function thispage()
{
	var imenu = document.getElementById("menu");
	
	var ilink = imenu.getElementsByTagName("a");
	
	if (location.href.lastIndexOf("/") == location.href.length-1)
	{
		ilink[0].setAttribute("className","thispage");  // FOR IE
		ilink[0].setAttribute("class","thispage");  // FOR ALL OTHERS
	}
	else
	{
		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
			}
		}
	}
}

window.onload = thispage;