<!--

var timeDelay = 5; // change delay time in seconds
var Pix = new Array
("images/medicaldonation/slideshow/image01.jpg" 
,"images/medicaldonation/slideshow/image02.jpg" 
,"images/medicaldonation/slideshow/image03.jpg"
,"images/medicaldonation/slideshow/image04.jpg"

);
var howMany = Pix.length;
timeDelay *= 1000;
var now=new Date();
var PicCurrentNum = (now.getSeconds())%howMany;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
setTimeout('slideshow()', timeDelay);
}
//-->
