/*
| -------------------------------------------------------
| Author	: Feng Wu, http://come.to/feng, feng@ustc.edu
| -------------------------------------------------------
| Created	: 2000
| Last Mod	: 10/18/01 3:00PM
| -------------------------------------------------------
| Copyright © Feng Wu, 2000 - 2001
| -------------------------------------------------------
*/

vUserAgent = navigator.userAgent;
nVer  = navigator.appVersion.substring(0,1);



if ((vUserAgent.lastIndexOf("MSIE") != -1) && (nVer = '4'))
{
	document.onmouseover = cool;
	document.onmouseout  = normal;
}

function cool()
{	src = event.toElement;
	if (src.tagName == "A")
	{	src.oldcol = src.style.color;
		src.style.color = vHoverColor;
	}
}

function normal()
{	src = event.fromElement;
	if (src.tagName == "A")
	{	src.style.color = src.oldcol;	
	}
}
