// JavaScript Document
<!-- Original:  D. Keith Higgs (dkh2@po.cwru.edu) -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var timeDelay = 5; // change delay time in seconds (Bill lowered to 5)
var Pix = new Array
("images/logos-1.gif" 
,"images/logos-2.gif" 
,"images/logos-3.gif" 
,"images/logos-4.gif" 
);
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;
}
//  End -->
<!-- Bill: This is a clone of image_cycler, to handle 2nd set of images -->

<!-- Begin
var timeDelay2 = 6; // change delay time in seconds (Bill lowered to 5)
var Pix2 = new Array
("images/quote3-1.gif" 
,"images/quote3-2.gif"
,"images/quote3-3.gif"  
);
var howMany2 = Pix2.length;
timeDelay2 *= 1000;
var PicCurrentNum2 = 0;
var PicCurrent2 = new Image();
PicCurrent2.src = Pix2[PicCurrentNum2];
function startPix2() {
setInterval("slideshow2()", timeDelay2);
}
function slideshow2() {
PicCurrentNum2++;
if (PicCurrentNum2 == howMany2) {
PicCurrentNum2 = 0;
}
PicCurrent2.src = Pix2[PicCurrentNum2];
document["ChangingPix2"].src = PicCurrent2.src;
}
//  End -->
