window.onload = activateLink

function activateLink()
{
	var currentURL = window.location
	var subNav = document.getElementById("related")
	if (subNav)
	{
		var links = subNav.getElementsByTagName("A")
		for (var c=0; c<links.length; c++)
		{
			if (links[c].href==currentURL) links[c].className="active"
		}
	}
/*	
	document.getElementById("container").style.overflow="auto"
	document.getElementById("footer").style.position="fixed"
	document.getElementById("footer").style.bottom="0"
*/

}
