<!--
//PLF-http://www.jejavascript.net/
function objet() {
this.length = objet.arguments.length
for (var i = 0; i < this.length; i++) this[i+1] = objet.arguments[i]
}
var nom = new objet ("diapo1.jpg", "diapo2.jpg", "diapo3.jpg", "diapo4.jpg");
var numero = 1;
function changer() {
document.image.src = "./images/"+nom[numero];
numero += 1;
if (numero == nom.length + 1) numero = 1;
setTimeout("changer()", 2500);
}

// utilisation de multi_onload.js
StkFunc(changer);

//-->
