var preloadImg = new Image();
preloadImg.src = "images/front.gif";

function swapImage(target)
{
if (document.images) 
  {
  if (document.layers) 
  document.layers['menu'].document.images['target'].src = "images/front.gif";
  else document.images[target].src = "images/front.gif";
  }
}
