function f ()
{
	this.blur();
	return false;
}

function onmouseover ()
{
	window.status = '';
}

function coverActiveLinks ()
{

	var hrefs = document.getElementsByTagName("a");

	for (var i = 0; i < hrefs.length; i ++)
	{
		if (hrefs[i].href == location.href)
		{
			hrefs[i].className += " active";
			hrefs[i].style.cursor = "default";
			hrefs[i].onclick = f;
			hrefs[i].onmouseover = onmouseover;
			hrefs[i].onmouseout = onmouseover;
		}
	}
}

