

  //
  // 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.

  var gblPhotoShufflerDivId = "box_witamy";
  var gblPhotoShufflerDivId2 = "top";
  var gblPhotoShufflerImgId = "photoimg"; 
  var gblPhotoShufflerImgId2 = "topimg"; 
  var gblImg = new Array(
    /*"http://www.konar.eu/css/main_8.jpg",
    "http://www.konar.eu/css/main_9.jpg",
	"http://www.konar.eu/css/main_10.jpg",
	"http://www.konar.eu/css/main_4.jpg",
	"http://www.konar.eu/css/main_2.jpg",
    "http://www.konar.eu/css/main_3.jpg",
	"http://www.konar.eu/css/main_5.jpg",
	"http://www.konar.eu/css/main_6.jpg",
	"http://www.konar.eu/css/main_7.jpg",
	"http://www.konar.eu/css/main_1.jpg"*/
		    /*"http://www.konar.hekko.pl/css/main_8.jpg",
		    "http://www.konar.hekko.pl/css/main_9.jpg",
			"http://www.konar.hekko.pl/css/main_10.jpg",
			"http://www.konar.hekko.pl/css/main_4.jpg",
			"http://www.konar.hekko.pl/css/main_2.jpg",
		    "http://www.konar.hekko.pl/css/main_3.jpg",
			"http://www.konar.hekko.pl/css/main_5.jpg",
			"http://www.konar.hekko.pl/css/main_6.jpg",
			"http://www.konar.hekko.pl/css/main_7.jpg",
			"http://www.konar.hekko.pl/css/main_1.jpg",*/

    );

  //var gblImg2 = new Array(
/*    "http://www.konar.eu/css/top_8.jpg",
    "http://www.konar.eu/css/top_9.jpg",
    "http://www.konar.eu/css/top_10.jpg",
    "http://www.konar.eu/css/top_4.jpg",
	"http://www.konar.eu/css/top_2.jpg",
    "http://www.konar.eu/css/top_3.jpg",
	"http://www.konar.eu/css/top_5.jpg",
	"http://www.konar.eu/css/top_6.jpg",
	"http://www.konar.eu/css/top_7.jpg",
	"http://www.konar.eu/css/top_1.jpg"*/
		    /*"http://www.konar.hekko.pl/css/top_8.jpg",
		    "http://www.konar.hekko.pl/css/top_9.jpg",
		    "http://www.konar.hekko.pl/css/top_10.jpg",
		    "http://www.konar.hekko.pl/css/top_4.jpg",
			"http://www.konar.hekko.pl/css/top_2.jpg",
		    "http://www.konar.hekko.pl/css/top_3.jpg",
			"http://www.konar.hekko.pl/css/top_5.jpg",
			"http://www.konar.hekko.pl/css/top_6.jpg",
			"http://www.konar.hekko.pl/css/top_7.jpg",
			"http://www.konar.hekko.pl/css/top_1.jpg"*/
	/*		"http://www.konar.hekko.pl/css/show/1.jpg",
			"http://www.konar.hekko.pl/css/show/2.jpg",
			"http://www.konar.hekko.pl/css/show/3.jpg",
			"http://www.konar.hekko.pl/css/show/4.jpg",
			"http://www.konar.hekko.pl/css/show/5.jpg",
			"http://www.konar.hekko.pl/css/show/6.jpg"
		  
    );		*/
  var gblPauseSeconds = 3;
  var gblFadeSeconds = 1.5;
  var gblRotations = 100;

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

  window.onload = photoShufflerLaunch;
  
  function photoShufflerLaunch()
  {
  	//var theimg = document.getElementById(gblPhotoShufflerImgId);
	var theimg2 = document.getElementById(gblPhotoShufflerImgId2);

	//if (theimg && theim2)
	if (theimg2)
	{
        //gblStartImg = theimg.src; // save away to show as final image
		gblStartImg2 = theimg2.src;

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

  function photoShufflerFade()
  {
  	//var theimg = document.getElementById(gblPhotoShufflerImgId);
	var theimg2 = document.getElementById(gblPhotoShufflerImgId2);
	
  	// 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);
	  setOpacity(theimg2,gblOpacity);
	  setTimeout("photoShufflerFade()",30);  // 1/30th of a second
	}
  }

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

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

	// slide next image underneath
	//thediv.style.backgroundImage='url(' + gblImg[gblOnDeck] + ')';
	thediv2.style.backgroundImage='url(' + gblImg2[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;
  }




