<PUBLIC:PROPERTY NAME="hiliteColor" />
<PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="Hilite()" />
<PUBLIC:ATTACH EVENT="onmouseout"  ONEVENT="Restore()"  />
<PUBLIC:ATTACH EVENT="onload" FOR="window" ONEVENT="Init()"  />

<SCRIPT LANGUAGE="JScript">
var normalColor;

function Init()
{
// initialize the properties
  if (hiliteColor == null)
     hiliteColor = "red";
}


function Hilite()
{
   if (event.srcElement == element)
   { 
     normalColor = style.color;
     style.color = hiliteColor;
     style.cursor = "hand";
   }
}

function Restore()
{
   if (event.srcElement == element)
   { 
      style.color = normalColor;
      style.cursor = "";
   }
}
</SCRIPT>