<!-- 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_1906_1208_shattuck_avec.jpg" 
,"sfbay_1960_st_marys_square_00c.jpg" 
,"sfbay_1965_1_maritime_plaza_05c.jpg" 
,"sfbay_1967_1_maritime_plaza_01c.jpg" 
,"sfbay_1967_1_maritime_plaza_03c.jpg" 
,"sfbay_1967_1_maritime_plaza_04c.jpg" 
,"sfbay_1968_1_maritime_plaza_02c.jpg" 
,"sfbay_1971_600_montgomery_st_01c.jpg" 
,"sfbay_1971_600_montgomery_stc.jpg" 
,"sfbay_1971_clay_battery_sacramento_drumm_sts_01c.jpg" 
,"sfbay_1971_foot_of_market_st_01c.jpg" 
,"sfbay_1971_foot_of_market_st_03c.jpg" 
,"sfbay_1972_345_stockton_st_01c.jpg" 
,"sfbay_1972_345_stockton_st_02c.jpg" 
,"sfbay_1973_van_ness_and_grove_sts_01c.jpg" 
,"sfbay_1975_clay_battery_sacramento_drumm_sts_03c.jpg" 
,"sfbay_1977_350_california_st_01c.jpg" 
,"sfbay_1977_clay_battery_sacramento_drumm_sts_02c.jpg" 
,"sfbay_1978_foot_of_market_st_02c.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 -->

