<!--
function OverIMG(x,y)
{
if (document.images && (BOOL == true))
  {
  document[x].src = document.IMG[y].src;
  }
}

function OutIMG(x,y)
{
if (document.images && (BOOL == true))
  {
  document[x].src = document.OLD[y].src;
  }
}

var BOOL;

function IMG()
{
var j=0;
BOOL = false;
if (document.images)
  {
  if (j==0)
    {
    document.IMG = new Array();
    document.OLD = new Array();
    }
  for (var i=0; i<IMG.arguments.length; i+=2)
    {
    document.OLD[j] = new Image;
    document.OLD[j].src = IMG.arguments[i];
    document.IMG[j] = new Image;
    document.IMG[j].src = IMG.arguments[i+1];
    j++;
    }
  BOOL = true;
  }
}
//-->

