/* auteur: RAVAT Jean-Claude */
/* Date de création: 09/01/2008 */
ejs_photo = new Array;
ejs_photo[0] = '../images/toghra-1.jpg';
img0 = new Image();
img0.src = '../images/toghra-1.jpg';
ejs_photo[1] = '../images/tineghir.jpg';
img1 = new Image();
img1.src = '../images/tineghir.jpg';
ejs_photo[2] = '../images/skoura.jpg';
img2 = new Image();
img2.src = '../images/skoura.jpg';
ejs_photo[3] = '../images/ouarzazate-1.jpg';
img3 = new Image();
img3.src = '../images/ouarzazate-1.jpg';
ejs_photo[4] = '../images/rissani-1.jpg';
img4 = new Image();
img4.src = '../images/rissani-1.jpg';
ejs_photo[5] = '../images/dromadaire_maroc2.jpg';
img5 = new Image();
img5.src = '../images/dromadaire_maroc2.jpg';
ejs_photo[6] = '../images/dunes-merzouga.jpg';
img6 = new Image();
img6.src = '../images/dunes-merzouga.jpg';
ejs_photo[7] = '../images/dromadaire_merzouga-1.jpg';
img7 = new Image();
img7.src = '../images/dromadaire_merzouga-1.jpg';
var num = 0;
var go=true;
function afphoto(){
document.getElementById("ejs_photo_box").innerHTML = "<IMG SRC='"+ejs_photo[num]+"' style='border: thin solid #993300'>";
	if(num < 7){
	   num++;
	}
	else{
	   num = 0;
	}
setTimeout("afphoto()",1500);
}
window.onload = function(){
   afphoto();
}

