// Image Swapper
function imgSwap(name,image)
  {
    if (document.images)
    {
      document[name].src = image;
    }
  }
  
  