﻿  //
  // CSS Photo Shuffler v1.0 by
  //   Carl Camera
  //   http://iamacamera.org 
  //
  // SetOpacity Function and inpiration from Photo Fade by
  //   Richard Rutter
  //   http://clagnut.com
  //
  // License: Creative Commons Attribution 2.5  License
  //   http://creativecommons.org/licenses/by/2.5/
  //
  
  // Customize your photo shuffle settings
  // 
  // * Surround the target <img /> with a <div>. specify id= in both
  // * The first and final photo displayed is in the html <img> tag
  // * The array contains paths to photos you want in the rotation. 
  //   If you want the first photo in the rotation, then it's best to
  //   put it as the final array image.  All photos must be same dimension
  // * The rotations variable specifies how many times to repeat array.
  //   images. zero is a valid rotation value.

  var gblPhotoShufflerDivId = "shufflediv";
  var gblPhotoShufflerImgId = "photoshuffle"; 
  var gblImg = new Array(
      "/images/customer-logos/adamo-demolition.jpg",
      "/images/customer-logos/atlantic-county-utilities-authority.jpg",
      "/images/customer-logos/bcs-enterprises.jpg",
      "/images/customer-logos/bechtel-jacobs.jpg",
      "/images/customer-logos/bierlein.jpg",
      "/images/customer-logos/bolander-and-sons.jpg",
      "/images/customer-logos/brandenburg-industrial-service-company.jpg",
      "/images/customer-logos/cargill.jpg",
      "/images/customer-logos/cherry.jpg",
      "/images/customer-logos/cleveland-wrecking.jpg",
      "/images/customer-logos/coronado.jpg",
      "/images/customer-logos/dallas-contracting.gif",
      "/images/customer-logos/dh-griffin-companies.jpg",
      "/images/customer-logos/edward-c-levy-co.gif",
      "/images/customer-logos/entact-environmental-services.jpg",
      "/images/customer-logos/first-energy.gif",
      "/images/customer-logos/hae-in-corporation.jpg",
      "/images/customer-logos/hertz-equipment-rental.jpg",
      "/images/customer-logos/homrich.jpg",
      "/images/customer-logos/idaho-national-laboratory.jpg",
      "/images/customer-logos/iei-barge-services.gif",
      "/images/customer-logos/iron-hustler-excavating.jpg",
      "/images/customer-logos/jp-reilly-construction-concepts.jpg",
      "/images/customer-logos/kurtz-brothers.jpg",
      "/images/customer-logos/lafarge-group.gif",
      "/images/customer-logos/lloyd-nabors-demolition-and-excavation.gif",
      "/images/customer-logos/mazzocchi-wrecking.jpg",
      "/images/customer-logos/motion-industries.jpg",
      "/images/customer-logos/national-salvage-and-service-corporation.jpg",
      "/images/customer-logos/north-american-dismantling-corporation.jpg",
      "/images/customer-logos/pacific-blasting-and-demolition.gif",
      "/images/customer-logos/pece_of_mind.jpg",
      "/images/customer-logos/penhall-company.jpg",
      "/images/customer-logos/premier-demolition.jpg",
      "/images/customer-logos/resource-recovery-technologies.gif",
      "/images/customer-logos/rocky-mountain-steel-mills-division.jpg",
      "/images/customer-logos/sabre-demolition.gif",
      "/images/customer-logos/sb-cox.gif",
      "/images/customer-logos/shamrock-disposal.gif",
      "/images/customer-logos/titan-wrecking-and-environmental.jpg",
      "/images/customer-logos/veit.gif");
  var gblPauseSeconds = 3.25;
  var gblFadeSeconds = .85;
  var gblRotations = 999;

  // 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*1000);
  }

  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*1000);
	}
	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;
}
