<!-- Original:  D. Keith Higgs (dkh2@po.cwru.edu) -->
<!-- Modified: Tom Brezinski (1/3/2001) -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
var timeDelay = 2; // change delay time in seconds
var Pixone = new Array
("../../images/slides4/image1.jpg"
,"../../images/slides4/image2.jpg"
,"../../images/slides4/image3.jpg"
);
var Pixtwo = new Array
("../../images/slides4/image4.jpg"
,"../../images/slides4/image5.jpg"
,"../../images/slides4/image6.jpg"
);
var Pixthree = new Array
("../../images/slides4/image7.jpg"
,"../../images/slides4/image8.jpg"
,"../../images/slides4/image9.jpg"
);
var Pixfour = new Array
("../../images/slides4/image10.jpg"
,"../../images/slides4/image11.jpg"
,"../../images/slides4/image12.jpg"
);
var howManyone = Pixone.length;
var howManytwo = Pixtwo.length;
var howManythree = Pixthree.length;
var howManyfour = Pixfour.length;
timeDelay *= 1000;
var PicCurrentoneNum = 0;
var PicCurrenttwoNum = 0;
var PicCurrentthreeNum = 0;
var PicCurrentfourNum = 0;
var PicCurrentone = new Image();
var PicCurrenttwo = new Image();
var PicCurrentthree = new Image();
var PicCurrentfour = new Image();
PicCurrentone.src = Pixone[PicCurrentoneNum];
PicCurrenttwo.src = Pixtwo[PicCurrenttwoNum];
PicCurrentthree.src = Pixthree[PicCurrentthreeNum];
PicCurrentfour.src = Pixthree[PicCurrentfourNum];
function startPix() {
PixAll = setInterval("slideshow()",timeDelay*4);
slideshow();
}
function slideshow() {
PixOne = setInterval("slideshowone()", timeDelay);
PixTwo = setInterval("slideshowtwo()", timeDelay*2);
PixThree = setInterval("slideshowthree()", timeDelay*3);
PixFour = setInterval("slideshowfour()", timeDelay*4);
}
function slideshowone() {
	PicCurrentoneNum++;
	if (PicCurrentoneNum == howManyone) {
		PicCurrentoneNum = 0;
	}
	PicCurrentone.src = Pixone[PicCurrentoneNum];
	document["ChangingPixone"].src = PicCurrentone.src;
	clearInterval(PixOne);
}
function slideshowtwo() {
	PicCurrenttwoNum++;
	if (PicCurrenttwoNum == howManytwo) {
		PicCurrenttwoNum = 0;
	}
	PicCurrenttwo.src = Pixtwo[PicCurrenttwoNum];
	document["ChangingPixtwo"].src = PicCurrenttwo.src;
	clearInterval(PixTwo);
}
function slideshowthree() {
	PicCurrentthreeNum++;
	if (PicCurrentthreeNum == howManythree) {
		PicCurrentthreeNum = 0;
	}
	PicCurrentthree.src = Pixthree[PicCurrentthreeNum];
	document["ChangingPixthree"].src = PicCurrentthree.src;
	clearInterval(PixThree);
}
function slideshowfour() {
	PicCurrentfourNum++;
	if (PicCurrentfourNum == howManyfour) {
		PicCurrentfourNum = 0;
	}
	PicCurrentfour.src = Pixfour[PicCurrentfourNum];
	document["ChangingPixfour"].src = PicCurrentfour.src;
	clearInterval(PixFour);
}
