// Thanks to http://mtsu32.mtsu.edu:11075/JavaScript/JavaScript_Image_Cycle.htm
var timeDelay = 15; // change delay time in seconds
var Pix = new Array
("/images/bs09_one.jpg" 
,"/images/bs09_two.jpg"
,"/images/bs09_three.jpg" 
);
var howMany = Pix.length;
timeDelay *= 400;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}