<!-- 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_1928_1010_gough_stc.jpg" 
,"sfbay_1928_1201_ortega_stc.jpg" 
,"sfbay_1928_555_baker_st_01c.jpg" 
,"sfbay_1928_dana_at_dwight_way_01c.jpg" 
,"sfbay_1928_the_marinac.jpg" 
,"sfbay_1929_100_bush_st_1c.jpg" 
,"sfbay_1929_100_bush_st_2c.jpg" 
,"sfbay_1929_3450_washington_stc.jpg" 
,"sfbay_1930_30_presidio_terc.jpg" 
,"sfbay_1930c_343_sansome_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 -->

