
      <!-- //

      // SLIDESHOW
      // Set slideShowSpeed (milliseconds)
      var slideShowSpeed = 5000;
      // Duration of crossfade (seconds)
      var crossFadeDuration = 3;

      var pic = new Array();
      pic[0] = 'ms_a_p70.jpg'
      pic[1] = 'ms_b_p70.jpg'
      pic[2] = 'ms_c_p70.jpg'
      pic[3] = 'ms_d_p70.jpg'
      pic[4] = 'ms_e_p70.jpg'
      pic[5] = 'ms_f_p70.jpg'
      pic[6] = 'ms_g_p70.jpg'
      pic[7] = 'ms_h_p70.jpg'

      var thumbs = new Array();
      thumbs[0] = 'a';
      thumbs[1] = 'b';
      thumbs[2] = 'c';
      thumbs[3] = 'd';
      thumbs[4] = 'e';
      thumbs[5] = 'f';
      thumbs[6] = 'g';
      thumbs[7] = 'h';

      var t;
      var j = 0;
      var cycles = 0;
      var p = pic.length;
      var isShowOn = true;

      // Preload images for smoother slideshow
      var preLoad = new Array();
      for (i = 0; i < p; i++) {
        preLoad[i] = new Image();
        preLoad[i].src = pic[i];
      }

      // Display next photo with cross-dissolve effect (IE only)
      function runSlideShow() {
        if ( !isShowOn ) return;
        if (document.all) {
          document.images.photo.style.filter="blendTrans(duration=2)";
          document.images.photo.style.filter="blendTrans(duration=crossFadeDuration)";
          document.images.photo.filters.blendTrans.Apply();
        }
        document.images.photo.src = preLoad[j].src;
        unHighlightThumbnails();
        highlightThumbnail( thumbs[j] );
        if (document.all) {
          document.images.photo.filters.blendTrans.Play();
        }
        if ( cycles >= 3 && j >= 0 ) {
          isShowOn = false; // stop show after 3 cycles
          return;
        }
        j = j + 1;
        if (j > (p - 1)) {
          j = 0;
          cycles = cycles + 1;
        }
        t = setTimeout('runSlideShow()', slideShowSpeed);
      }

      function clickThumbnail( letter ) {
          isShowOn = false;
          cycles = 99;
          document.photo.src = 'ms_'+letter+'_p70.jpg'
          unHighlightThumbnails();
          highlightThumbnail( letter );
      }

      function unHighlightThumbnails() {

          document['a5'].src = '1x1-transp.gif';
          document['b5'].src = '1x1-transp.gif';
          document['c5'].src = '1x1-transp.gif';
          document['d5'].src = '1x1-transp.gif';
          document['e5'].src = '1x1-transp.gif';
          document['f5'].src = '1x1-transp.gif';
          document['g5'].src = '1x1-transp.gif';
          document['h5'].src = '1x1-transp.gif';

      }

      function highlightThumbnail( letter ) {
          document[letter+'5'].src = '1x1-ocre.gif';
      }

      // -->
