var glowLinks = false;

if( document.body )
{
	glowLinks = true;
}

if( glowLinks )
{
	document.body.onmouseover = gl_glow;
	document.body.onmouseout  = gl_noglow;
}

function gl_glow()
{
	if( glowLinks && event && event.toElement )
	{
		s = event.toElement;
		if( s.style && ("A" == s.tagName) )
		{
			s.oldcol = s.style.color;
			s.style.color = "ff0000";
		}
	}
}

function gl_noglow()
{
	if( glowLinks && event && event.fromElement)
	{
		s = event.fromElement;
		if( s.style && ("A" == s.tagName) )
		{
			s.style.color = s.oldcol;
		}
	}
}
