function doMouseOver()
{
   var oSource = event.srcElement;
   if ((oSource.className != "COLLAPSING") && (oSource.tagName != "A"))
      return;

   oSource.style.cursor = "hand";
   oSource.style.color = "#C00000";
}

function doMouseOut()
{
   var oSource = event.srcElement;
   if ((oSource.className != "COLLAPSING") && (oSource.tagName != "A"))
      return;

   oSource.style.cursor = "";
   oSource.style.color = "black";
}

function doMenuMouseOver()
{
   var oSource = event.srcElement;
   if ((oSource.className != "COLLAPSING") && (oSource.tagName != "A"))
      return;

   oSource.style.cursor = "hand";
   oSource.style.backgroundColor = "#C00000";
}

function doMenuMouseOut()
{
   var oSource = event.srcElement;
   if ((oSource.className != "COLLAPSING") && (oSource.tagName != "A"))
      return;

   oSource.style.cursor = "";
   oSource.style.backgroundColor = "black";
}
