

window.onload = function()
{
	aList = document.getElementsByTagName("a");
	for(var i=0;i<aList.length;i++)
	{
		aElm = aList[i]
		if(aElm.href.indexOf("mailto:")==0)
		{
			aElm.href=aElm.href.replace("[a]","@");
		}
		if(aElm.className.indexOf("hover")>=0 && aElm.getElementsByTagName("img").length)
		{
			aElm.imgElm = aElm.getElementsByTagName("img")[0];
			aElm.imgNormalElm = new Image();
			aElm.imgNormalElm.src = aElm.getElementsByTagName("img")[0].src;
			aElm.imgHoverElm = new Image();
			aElm.imgHoverElm.src = aElm.imgNormalElm.src.replace(".gif","_hover.gif");
			aElm.onmousedown = aElm.onmouseover = function()
			{
				this.imgElm.src = this.imgHoverElm.src;
				this.onmouseout = function()
				{
					this.imgElm.src = this.imgNormalElm.src;
				}
			}
		}
	}
}
