var timeDelay = 20; // change delay time in seconds
var Pix = new Array
("images/republicFrance.jpg" ,"images/europe.jpg");
var howMany = Pix.length;
timeDelay *= 300;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// -->
function MM_callJS(jsStr) { //v2.0
 return eval(jsStr)
}

