// *******************************************************************
var current_tab = "";

// *******************************************************************
function dofunc(prefix,new_tab)
{
  var val = "";
  val = "document." + new_tab + ".src='images/" + prefix + new_tab + ".jpg';";
  eval(val);
}

// *******************************************************************
function mouse_on(new_tab)
{
  if(new_tab != current_tab)
  {
    current_tab = new_tab;
    dofunc('MS_',new_tab);
  }
}

// *******************************************************************
function mouse_off(new_tab)
{
  if(new_tab == current_tab)
  {
    current_tab = "";
    dofunc('M_',new_tab);
  }
}
