/*
You may use this code for free on any web page provided that 
these comment lines and the following credit remain in the code.
TextTrans Rollovers from http://www.javascript-fx.com
*/

function initTrans()
{
	for(var i=0 ; i<document.links.length ; i++)
		if(document.links[i].className == "textTrans")
		{
			var lnk=document.links[i];
			lnk.onmouseover=transOn;
			lnk.onmouseout=transOff;
		}
}
function transOn() 
{
	if(this.filters != null) this.filters[0].stop();
	if(this.style)
	{
		this.style.backgroundColor = "#ee8032";
		this.style.color = "#ffffff";
	}
} 
function transOff() 
{ 
	if(this.filters != null) this.filters[0].apply();
	if(this.style)
	{
		this.style.backgroundColor = "";
		this.style.color = "#004091";
	}
	if(this.filters != null) this.filters[0].play();
}
