if (document.images) 
{
   img1 = new Image();
   img2 = new Image();
   img3 = new Image();
   img1.src = "images/pic1.jpg";
   img2.src = "images/pic2.jpg";
   img3.src = "images/pic3.jpg"
}

function LoadGallery(pictureName,imageFile)
{
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = imageFile;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
}