<!-- 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
var Pix = new Array
("sfbay_1894_2622_jackson_stc.jpg" 
,"sfbay_1894_2622_jackson_st_01c.jpg" 
,"sfbay_1894-95_mechanics_plaza_01c.jpg" 
,"sfbay_1896-97_market_post_montgomery_stsc.jpg" 
,"sfbay_1896_2550_webster_stc.jpg" 
,"sfbay_1896_2550_webster_st_01c.jpg" 
,"sfbay_1896_2550_webster_st_02c.jpg" 
,"sfbay_1897_750_kearny_st_1c.jpg" 
,"sfbay_1897_750_kearny_st_2c.jpg" 
,"sfbay_1880_2139-41_buchanan_stc.jpg" 
,"sfbay_1900_1100_lombard_stc.jpg" 
,"sfbay_1900_2319-2323_hyde_stc.jpg" 
,"sfbay_1900_1_lombard_stc.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;
}// End -->
