function swapClass(obj, newClassName)
{
  obj.className = newClassName;
}

function menuMouseOver(obj, newClassName)
{
  swapClass(obj, newClassName);
  var childAnchors = obj.getElementsByTagName("A");
  var anchorCount = childAnchors.length;
  if (anchorCount > 0)
  {
    var firstAnchor = childAnchors.item(0);
    firstAnchor.style.color = "#10427B";
  }
}

function menuMouseOut(obj, newClassName)
{
  swapClass(obj, newClassName);
  var childAnchors = obj.getElementsByTagName("A");
  var anchorCount = childAnchors.length;
  if (anchorCount > 0)
  {
    var firstAnchor = childAnchors.item(0);
    firstAnchor.style.color = "#FFFFFF";
  }
}

