
var g_bGlowAllLinks = true;

var g_bGlowLinks    = false;

if(document.body)
{
 g_bGlowLinks = true;
}

if(g_bGlowLinks && g_bGlowAllLinks)
{
 document.body.onmouseover = gl_high;

 document.body.onmouseout  = gl_norm;
}

function gl_high()
{
 if(g_bGlowLinks)
 {
  if(event && event.toElement)
  {
   s = event.toElement;
   if(s.style && ("A" == s.tagName))
   {
    s.oldcol      = s.style.color;
    s.style.color = "ff0080";
   }
  }
 }
}

function gl_norm()
{
 if(g_bGlowLinks)
 {
  if(event && event.fromElement)
  {
   s = event.fromElement;
   if(s.style && ("A" == s.tagName))
   {
    s.style.color = s.oldcol;
   }
  }
 }
}

//-->
