// JavaScript Document 
// Swapping Images on the website
// Clicking on a thumb 1t.jpg displays a large image 1.jpg in the main window 

  gallery = "album1";

  function ChangeGallery(g) {
    gallery = g;
    document.images.gallery.src = "images/" + gallery + "/gallery.jpg";
    document.images["1t"].src = "images/" + gallery + "/1t.jpg";
    document.images["2t"].src = "images/" + gallery + "/2t.jpg";
    document.images["3t"].src = "images/" + gallery + "/3t.jpg";
    document.images["4t"].src = "images/" + gallery + "/4t.jpg";
    document.images["5t"].src = "images/" + gallery + "/5t.jpg";
    document.images["6t"].src = "images/" + gallery + "/6t.jpg";
    document.images["7t"].src = "images/" + gallery + "/7t.jpg";
    document.images["8t"].src = "images/" + gallery + "/8t.jpg";
  }

  function ShowImage(n) {
    document.images.gallery.src = "images/" + gallery + "/" + n + ".jpg";
  }

