slideShowSpeed = 1000
crossFadeDuration = 10
Pic = new Array()

ppath = "img_nemo" ;

Pic[0] = ppath + "/" + 'photo_haut_1.jpg'
Pic[1] = ppath + "/" + 'photo_haut_2.jpg'

p = Pic.length
preLoad = new Array()

for (i = 0; i < p; i++){
	preLoad[i] = new Image()
	preLoad[i].src = Pic[i]
}

var j
if (j==null){ 
do {
j=Math.round(Math.random()*10); 
} while(j>=10);
}

function runSlideShow(){
	if (document.all){
		document.images.SlideShow.style.filter="blendTrans(duration=2)"
		document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
		document.images.SlideShow.filters.blendTrans.Apply() 
	}
	document.images.SlideShow.src = preLoad[j].src
	if (document.all){
		document.images.SlideShow.filters.blendTrans.Play()
	}
	j = j + 1
	if (j > (p-1)) j=0
	t = setTimeout('runSlideShow()', slideShowSpeed)
}



// zoom
var popzoom
function large(photo,leg) {
	var url = "large.php?photo=" + photo + "&leg=" + leg  ;
	var w=370;
	var h=390;
	if(popzoom == null || popzoom.closed) {
		popzoom = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	} else {
		popzoom.close()
		popzoom = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	}
}

// zoom galerie
var popzoomgal
function zoomgal(photo,leg) {
	var url = "zoomgal.php?photo=" + photo + "&leg=" + leg  ;
	var w=700;
	var h=500;
	if(popzoomgal == null || popzoomgal.closed) {
		popzoomgal = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	} else {
		popzoomgal.close()
		popzoomgal = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	}
}

var poppack
function winpack(purl) {
	var url = purl  ;
	var w=500;
	var h=600;
	if(poppack == null || poppack.closed) {
		poppack = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	} else {
		poppack.close()
		poppack = window.open(url, "nl", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=" + w + ",height=" + h + ",top=30,left=30");
	}
}

function showroll(img) { document.images[img].className='blend100'; }
function hideroll(img) { document.images[img].className='blend25';  }

function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){  
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
        }
      }
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;

      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
  
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
      }
    }
  } 
}