<!--
var timeDelay = 5; // change delay time in seconds
var Pix = new Array
("/images/2_headPic01.jpg" 
,"/images/2_headPic02.jpg" 
,"/images/2_headPic03.jpg" 
,"/images/2_headPic04.jpg" 
,"/images/2_headPic05.jpg" 
);
var howMany = Pix.length;
timeDelay *= 1000;
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;
}
-->
