<!-- 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_1783_presidio_gate_1c.jpg" 
,"sfbay_1853_2475_pacific_avec.jpg" 
,"sfbay_1857_1067_green_stc.jpg" 
,"sfbay_1857_2645_gough_stc.jpg" 
,"sfbay_1860s_1309_montgomery_stc.jpg" 
,"sfbay_1868_300_pennsylvania_stc.jpg" 
,"sfbay_1875_kearny_and_geary_stsc.jpg" 
,"sfbay_1886_1000_california_st_1c.jpg" 
,"sfbay_1890_455_fair_oaks_st_1c.jpg" 
,"sfbay_1900_2880_broadwayc.jpg" 
,"sfbay_1902c_23_panoramic_way_01c.jpg" 
,"sfbay_1905c_2870-78_washington_stc.jpg" 
,"sfbay_1910_744_market_st_01c.jpg" 
,"sfbay_1922-25_953_de_haro_stc.jpg" 
,"sfbay_1929_100_bush_st_1c.jpg" 
,"sfbay_1932_42-58_fell_st_01c.jpg" 
,"sfbay_1937_golden_gate_bridge_1c.jpg" 
,"sfbay_1959_1_bush_st_01c.jpg" 
,"sfbay_1967_1_maritime_plaza_01c.jpg" 
,"sfbay_1972_345_stockton_st_01c.jpg" 
,"sfbay_1986_400_sansome_st_01c.jpg" 
,"sfbay_1998-99_lincoln_way_01c.jpg" 
,"sfbay_2003_500_howard_st_01c.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 -->

