function corLinkHover() 
{
	this.corLink = this.style.color;
	this.style.color = "#FF0000";
	this.style.backgroundImage = "url(images/mn_bullet.gif)";
	this.style.backgroundPosition = "right center";
	this.style.backgroundRepeat = "no-repeat";
}

function corLinkDefault() 
{
	this.style.color = this.corLink;
	this.style.backgroundImage = "none";
}

var oCorLink = document.getElementById("corLink");
var sCorLink = oCorLink.value 

if (sCorLink != "") 
{
	var oA = document.getElementById("divTopoDir").getElementsByTagName("a");
	var iA = oA.length; 

	for(i=0; i < iA; i++) 
	{
		addEvent(oA[i],"mouseover",corLinkHover);
		addEvent(oA[i],"mouseout",corLinkDefault);
	}
}