
      <!-- //

      // SLIDESHOW
      // Set slideShowSpeed (milliseconds)
      var slideShowSpeed = 5000;
      // Duration of crossfade (seconds)
      var crossFadeDuration = 3;

      var pic = new Array();
      pic[0] = 'ms_a_p63.jpg'
      pic[1] = 'ms_b_p63.jpg'
      pic[2] = 'ms_c_p63.jpg'
      pic[3] = 'ms_d_p63.jpg'

      var thumbs = new Array();
      thumbs[0] = 'a';
      thumbs[1] = 'b';
      thumbs[2] = 'c';
      thumbs[3] = 'd';

      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+'_p63.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';

      }

      function highlightThumbnail( letter ) {
          document[letter+'5'].src = '1x1-ocre.gif';
      }

      // -->
