//alert('menubar onload');
var tmpColor;
function menubar_mouseover(senderCell)
{
  //alert(senderCell.firstChild.innerHtml);
  senderCell.style.backgroundImage='URL("../images/menuBtnMid_dn_slice.gif")';
  tmpColor=senderCell.firstChild.style.color;
  senderCell.firstChild.style.color="white";
}

function menubar_mouseout(senderCell)
{
  senderCell.style.backgroundImage='URL("../images/tile_back.gif")';
  senderCell.firstChild.style.color=tmpColor;
}

function li_information_mouseover(senderLI)
{
  senderLI.style.backgroundImage='URL("../images/menuBtnMid_dn_slice.gif")';
  tmpColor=senderLI.firstChild.style.color;
  senderLI.firstChild.style.color="white";
}
function li_information_mouseout(senderLI)
{
  senderLI.style.backgroundImage='URL("../images/tile_back.gif")';
  senderLI.firstChild.style.color=tmpColor;
}
