<!-- 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_1930_30_presidio_terc.jpg" 
,"sfbay_1930c_343_sansome_stc.jpg" 
,"sfbay_1931_800_chestnut_st_00c.jpg" 
,"sfbay_1931_965_clay_stc.jpg" 
,"sfbay_1932_42-58_fell_st_01c.jpg" 
,"sfbay_1932_42-58_fell_st_02c.jpg" 
,"sfbay_1932_940-50_powell_st_01c.jpg" 
,"sfbay_1932_940-50_powell_st_02c.jpg" 
,"sfbay_1932_fisher_loop_01c.jpg" 
,"sfbay_1932_fisher_loop_02c.jpg" 
,"sfbay_1933_columbus_stockton_union_filbert_sts_01c.jpg" 
,"sfbay_1933_columbus_stockton_union_filbert_sts_02c.jpg" 
,"sfbay_1933_columbus_stockton_union_filbert_sts_03c.jpg" 
,"sfbay_1934_625_taylor_01c.jpg" 
,"sfbay_1934_625_taylor_02c.jpg" 
,"sfbay_1934_canada_rd_01c.jpg" 
,"sfbay_1934_end_telegraph_hill_blvd_1c.jpg" 
,"sfbay_1934_end_telegraph_hill_blvd_2c.jpg" 
,"sfbay_1937_golden_gate_bridge_1c.jpg" 
,"sfbay_1937_golden_gate_bridge_2c.jpg" 
,"sfbay_1937_golden_gate_bridge_3c.jpg" 
,"sfbay_1937_purdue_ave_01c.jpg" 
,"sfbay_1937_purdue_ave_02c.jpg" 
,"sfbay_1937_purdue_ave_03c.jpg" 
,"sfbay_1937_purdue_ave_04c.jpg" 
,"sfbay_1938_2660_divisidero_st_01c.jpg" 
,"sfbay_1938_2660_divisidero_st_02c.jpg" 
,"sfbay_1942_3655_clay_stc.jpg" 
,"sfbay_1951_3700_washington_st_01c.jpg" 
,"sfbay_1951_3700_washington_st_02c.jpg" 
,"sfbay_1959_1_bush_st_01c.jpg" 
,"sfbay_1960_st_marys_square_00c.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 -->
