// JavaScript Document

///////////////////////////////////////////////////
//												 //
// 			script d'ouverture de la carte 		 //
//			google agrandie						 //
//											     //
///////////////////////////////////////////////////

function map(page) {
      document.getElementById("map").style.visibility="visible";
    }
function close() {
	  document.getElementById("map").style.visibility="hidden";
	}

///////////////////////////////////////////////////
//												 //
// 			script du lecteur d'images           //
//											     //
///////////////////////////////////////////////////
var a = 2;
var b = 29; // limite pour reprendre le défilement du début
var c = 28; // dernière image à afficher
function roll_image()
	{
		
		if( a == b )
			{
				a = 1;
				document.images["image"].src="./photos/ecoba"+a+".jpg";
				a++;
			}
		else {
				document.images["image"].src="./photos/ecoba"+a+".jpg";
				a++;
			
			}	
		image_reader=setTimeout("roll_image()",3000);
	}

function back1_image()
  { 
   a = a-1;
   if(a <= 0)
    {
    a = c;
    }
  	document.images["image"].src="./photos/ecoba"+a+".jpg";
  if(image_reader)
    {
    clearTimeout(image_reader);
    }
  }
  
  function ahead1_image()
  {
  a = a+1;
  if(a >= b)
    {
    a = 1;
    }
	document.images["image"].src="./photos/ecoba"+a+".jpg";
  if(image_reader)
    {
    clearTimeout(image_reader);
    }
  }
  
///////////////////////////////////////////////////
//												 //
// script de détection de préchargement d'images //
//											     //
///////////////////////////////////////////////////
var tabimg;

function preload() {
	tabimg=new load("./photos/ecoba2.jpg","./photos/ecoba3.jpg","./photos/ecoba4.jpg","./photos/ecoba5.jpg","./photos/ecoba6.jpg","./photos/ecoba7.jpg","./photos/ecoba8.jpg","./photos/ecoba9.jpg","./photos/ecoba10.jpg","./photos/ecoba11.jpg","./photos/ecoba12.jpg","./photos/ecoba13.jpg","./photos/ecoba14.jpg","./photos/ecoba15.jpg","./photos/ecoba16.jpg","./photos/ecoba17.jpg","./photos/ecoba18.jpg","./photos/ecoba19.jpg","./photos/ecoba20.jpg","./photos/ecoba21.jpg","./photos/ecoba22.jpg","./photos/ecoba23.jpg","./photos/ecoba24.jpg","./photos/ecoba25.jpg","./photos/ecoba26.jpg","./photos/ecoba27.jpg","./photos/ecoba28.jpg");
	// Indiquez ici la liste des urls des images à précharger
	setTimeout("Verifie()",200);
}

function FinPreload() {
	// FinPreload est appelée à la fin du préchargement pour déclencher une action
	// A personnaliser
	 roll_image();
}

function load() {
        if (document.images) {
                this.length=load.arguments.length;
                for (var i=0;i<this.length;i++) {
                        this[i+1]=new Image();
                        this[i+1].src=load.arguments[i];
                }
        }
}
function Verifie() {
        var ok=1;
        if (document.images) {
                for (var i=0;i<tabimg.length;i++) {
                        if (!(tabimg[i+1].complete)) {ok=0}
                }
        }
        if (ok) {FinPreload()}
        else {setTimeout("Verifie()",200)}
}
