var aAll;

function kickOff() 
{
	aAll = document.getElementsByTagName("a"); // disable and change color of active page's link
	for (var i=0; i<aAll.length; i++) 
	{
		if (window.location.href.split("#")[0] == aAll[i].href) 
			{
				aAll[i].onclick = function() {if (this.blur) {this.blur();} return false;}
				aAll[i].style.cursor = "text";
				aAll[i].style.borderBottom = "none";
				aAll[i].style.textDecoration = "none";
				aAll[i].style.color = "#656453";
				aAll[i].style.fontSize = "12px";
				aAll[i].style.fontWeight = "700";
				aAll[i].style.paddingRight = "5px";
			}
 		// fixes in-page link bug for Internet Explorer
		if (navigator.appName == "Microsoft Internet Explorer") 
		{
			getElementsByClass("target");
		}
	}
}