function clearLinkDot()
{
	var i, a, main;
	for(i=0;(a=document.getElementsByTagName("a")[i]);i++)
	{
		if(a.getAttribute("onFocus")==null)
		{
			a.setAttribute("onFocus","this.blur();");
		}
		else
		{
			a.setAttribute("onFocus",a.getAttribute("onFocus")+";this.blur();");
		}
		a.setAttribute("hideFocus","hidefocus");
	}
}

window.onload=function(){clearLinkDot();}
