var origCol;

function mouseOver(cell)
{
  document.getElementById(cell).src="../images/menu/Tab_selected_"+cell+".bmp";
}

function mouseOut(cell, origPic)
{
  document.getElementById(cell).src=origPic;
}

function focusMenu(element)
{
  if(element!='skip')document.getElementById(element).style.background="#FFFFFF";
  document.body.style.cursor="hand";
}

function unFocusMenu(element)
{
  if(element!='skip')document.getElementById(element).style.background="#FF0000";
  document.body.style.cursor="default";
}

function focusBGMenu(element)
{
  document.getElementById(element).style.background="#FF8888";
  document.body.style.cursor="hand";
}

function unFocusBGMenu(element)
{
  document.getElementById(element).style.background="#993333";
  document.body.style.cursor="default";
}

//-------------------------------------------------------------
//
//-------------------------------------------------------------

function picFocus(focal)
{
  document.getElementById(focal).style.opacity="1";
  document.getElementById(focal).style.filter="alpha(opacity=100)";
}

//-------------------------------------------------------------
//
//-------------------------------------------------------------

function picUnFocus(focal)
{
  document.getElementById(focal).style.opacity=".60";
  document.getElementById(focal).style.filter="alpha(opacity=60)";
}
