  //
  // 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
  // * set background-repeat:no-repeat in CSS for the div
  // * 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.

  //First rotation piece
  var MAX_IMAGES = 6;
  var IMAGE_WIDTH = 372;
  var IMAGE_HEIGHT = 55;
  var gblImg;
  var gblPhotoShufflerDivId = "photodiv2";
  var gblPhotoShufflerImgId = "photoimg2"; 
  
  //Second rotation piece
  var MAX_IMAGES2 = 2;
  var IMAGE_WIDTH2 = 283;
  var IMAGE_HEIGHT2 = 150;
  var gblImg2;
  var gblHrefs2;
  var gblPhotoShufflerDivId2 = "photodiv3";
  var gblPhotoShufflerImgId2 = "photoimg3";
  var gblPhotoShufflerHref2 = "photohref3";
  
  //First rotation piece part 2
  var myImages = new Array("award6_b", "award2_b",  "award5_b", "award3_b", "award1_b",  "award4_b");
  gblImg = new Array(MAX_IMAGES);
  for(var i = 0; i < gblImg.length; i++)
  {
  	gblImg[i] = new Image(IMAGE_WIDTH, IMAGE_HEIGHT);
  	gblImg[i].src = "images/" + myImages[i] + ".jpg";
  }  
  var gblPauseSeconds = 5.00;
  var gblFadeSeconds = .85;
  var gblRotations = 10000;
  
  //Second rotation piece part 2
  var myImages2 = new Array("weekly-specials_01b", "weekly-specials_01");
  var myHrefs2 = new Array("nye_special.html", "hotel_special.html");
  gblImg2 = new Array(MAX_IMAGES2);
  gblHref2 = new Array(MAX_IMAGES2);
  for(var j = 0; j < gblImg2.length; j++)
  {
  	gblImg2[j] = new Image(IMAGE_WIDTH2, IMAGE_HEIGHT2);
  	gblImg2[j].src = "images/" + myImages2[j] + ".jpg";
  	gblHref2[j] = myHrefs2[j];
  }  
  var gblPauseSeconds2 = 10.00;
  var gblFadeSeconds2 = .85;
  var gblRotations2 = 10000;

  // End Customization section
  
  //First rotation piece part 3
  var gblDeckSize = gblImg.length;
  var gblOpacity = 100;
  var gblOnDeck = 0;
  var gblStartImg;
  var gblImageRotations = gblDeckSize * (gblRotations+1);
  
  //Second rotation piece part 3
  var gblDeckSize2 = gblImg2.length;
  var gblOpacity2 = 100;
  var gblOnDeck2 = 0;
  var gblStartImg2;
  var gblStartHref2;
  var gblImageRotations2 = gblDeckSize2 * (gblRotations2+1);

  //window.onload = photoShufflerLaunch;
  
  //first rotation piece
  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].src + ')';
	setTimeout("photoShufflerFade()",gblPauseSeconds*1000);
  }
  
  //second rotation piece
  function photoShufflerLaunch2()
  {
  	var theimg2 = document.getElementById(gblPhotoShufflerImgId2);
  	var thehref2 = document.getElementById(gblPhotoShufflerHref2);
    gblStartImg2 = theimg2.src; // save away to show as final image
    gblStartHref2 = thehref2;
    
	document.getElementById(gblPhotoShufflerDivId2).style.backgroundImage='url(' + gblImg2[gblOnDeck2].src + ')';
	setTimeout("photoShufflerFade2()",gblPauseSeconds2*1000);
  }

  //first rotation piece
  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
	}
  }

  //second rotation piece
  function photoShufflerFade2()
  {
  	var theimg2 = document.getElementById(gblPhotoShufflerImgId2);
	
  	// determine delta based on number of fade seconds
	// the slower the fade the more increments needed
        var fadeDelta2 = 100 / (30 * gblFadeSeconds2);

	// fade top out to reveal bottom image
	if (gblOpacity2 < 2*fadeDelta2 ) 
	{
	  gblOpacity2 = 100;
	  // stop the rotation if we're done
	  if (gblImageRotations2 < 1) return;
	  photoShufflerShuffle2();
	  // pause before next fade
          setTimeout("photoShufflerFade2()",gblPauseSeconds2*1000);
	}
	else
	{
	  gblOpacity2 -= fadeDelta2;
	  setOpacity2(theimg2,gblOpacity2);
	  setTimeout("photoShufflerFade2()",30);  // 1/30th of a second
	}
  }

  //first rotation piece
  function photoShufflerShuffle()
  {
	var thediv = document.getElementById(gblPhotoShufflerDivId);
	var theimg = document.getElementById(gblPhotoShufflerImgId);
	
	// copy div background-image to img.src
	theimg.src = gblImg[gblOnDeck].src;
	// 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].src = gblStartImg;
	}

	// slide next image underneath
	thediv.style.backgroundImage='url(' + gblImg[gblOnDeck].src + ')';
  }

  //second rotation piece
  function photoShufflerShuffle2()
  {
	var thediv2 = document.getElementById(gblPhotoShufflerDivId2);
	var theimg2 = document.getElementById(gblPhotoShufflerImgId2);
    var thehref2 = document.getElementById(gblPhotoShufflerHref2);
	
	// copy div background-image to img.src
	theimg2.src = gblImg2[gblOnDeck2].src;
	// set img opacity to 100
	setOpacity2(theimg2,100);
	
	// copy href to to thehref.href
	thehref2.href = gblHref2[gblOnDeck2];

    // shuffle the deck
	gblOnDeck2 = ++gblOnDeck2 % gblDeckSize2;
	// decrement rotation counter
	if (--gblImageRotations2 < 1)
	{
	  // insert start/final image if we're done
	  gblImg2[gblOnDeck2].src = gblStartImg2;
	  gblHref2[gblOnDeck2].href = gblStartHref2;
	}

	// slide next image underneath
	thediv2.style.backgroundImage='url(' + gblImg2[gblOnDeck2].src + ')';
  }

  //first rotation piece
  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;
  }

  //second rotation piece
  function setOpacity2(obj2, opacity2) {
    opacity2 = (opacity2 == 100)?99.999:opacity2;
    
    // IE/Win
    obj2.style.filter = "alpha(opacity:"+opacity2+")";
    
    // Safari<1.2, Konqueror
    obj2.style.KHTMLOpacity = opacity2/100;

    // Older Mozilla and Firefox
    obj2.style.MozOpacity = opacity2/100;

    // Safari 1.2, newer Firefox and Mozilla, CSS3
    obj2.style.opacity = opacity2/100;
  }




