  var gblPhotoShufflerDivId = "photodiv";
  var gblPhotoShufflerImgId = "photoimg"; 
  var gblImg = new Array(
    "http://www.sphomaine.net/images/slideshow_images/photo1.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo2.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo3.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo43.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo4.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo5.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo6.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo38.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo44.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo7.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo8.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo9.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo10.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo11.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo35.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo12.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo13.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo14.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo15.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo16.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo17.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo18.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo36.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo41.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo19.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo20.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo21.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo39.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo22.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo23.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo24.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo25.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo26.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo27.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo37.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo28.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo29.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo30.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo31.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo32.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo33.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo34.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo40.jpg",
	"http://www.sphomaine.net/images/slideshow_images/photo42.jpg",
    "http://www.sphomaine.net/images/slideshow_images/photo1.jpg"
    );
  var gblPauseSeconds = 7;
  var gblFadeSeconds = .85;
  var gblRotations = 100;

  // End Customization section
  
  var gblDeckSize = gblImg.length;
  var gblOpacity = 100;
  var gblOnDeck = 0;
  var gblStartImg;
  var gblImageRotations = gblDeckSize * (gblRotations+1);

  window.onload = photoShufflerLaunch;
  
  function photoShufflerLaunch()
  {
  	var theimg = document.getElementById(gblPhotoShufflerImgId);
        gblStartImg = theimg.src; // save away to show as final image

	document.getElementById(gblPhotoShufflerDivId).style.backgroundImage='url(' + gblImg[gblOnDeck] + ')';
	setTimeout("photoShufflerFade()",gblPauseSeconds*30);
  }

  function photoShufflerFade()
  {
  	var theimg = document.getElementById(gblPhotoShufflerImgId);
	
  	// determine delta based on number of fade seconds
	// the slower the fade the more increments needed
        var fadeDelta = 100 / (30 * gblFadeSeconds);

	// fade top out to reveal bottom image
	if (gblOpacity < 2*fadeDelta ) 
	{
	  gblOpacity = 100;
	  // stop the rotation if we're done
	  if (gblImageRotations < 1) return;
	  photoShufflerShuffle();
	  // pause before next fade
          setTimeout("photoShufflerFade()",gblPauseSeconds*500);
	}
	else
	{
	  gblOpacity -= fadeDelta;
	  setOpacity(theimg,gblOpacity);
	  setTimeout("photoShufflerFade()",30);  // 1/30th of a second
	}
  }

  function photoShufflerShuffle()
  {
	var thediv = document.getElementById(gblPhotoShufflerDivId);
	var theimg = document.getElementById(gblPhotoShufflerImgId);
	
	// copy div background-image to img.src
	theimg.src = gblImg[gblOnDeck];
	// set img opacity to 100
	setOpacity(theimg,100);

        // shuffle the deck
	gblOnDeck = ++gblOnDeck % gblDeckSize;
	// decrement rotation counter
	if (--gblImageRotations < 1)
	{
	  // insert start/final image if we're done
	  gblImg[gblOnDeck] = gblStartImg;
	}

	// slide next image underneath
	thediv.style.backgroundImage='url(' + gblImg[gblOnDeck] + ')';
  }

  function setOpacity(obj, opacity) {
    opacity = (opacity == 100)?99.999:opacity;
    
    // IE/Win
    obj.style.filter = "alpha(opacity:"+opacity+")";
    
    // Safari<1.2, Konqueror
    obj.style.KHTMLOpacity = opacity/100;

    // Older Mozilla and Firefox
    obj.style.MozOpacity = opacity/100;

    // Safari 1.2, newer Firefox and Mozilla, CSS3
    obj.style.opacity = opacity/100;
  }



