<!-- 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_1922_425_mason_st_01c.jpg" 
,"sfbay_1922_425_mason_st_02c.jpg" 
,"sfbay_1922_425_mason_st_03c.jpg" 
,"sfbay_1922-25_953_de_haro_stc.jpg" 
,"sfbay_1923c-1945_lawton-35th_avec.jpg" 
,"sfbay_1924-25_3400_laguna_stc.jpg" 
,"sfbay_1924-26_arguello_blvd_lake_stc.jpg" 
,"sfbay_1925_134-40_new_montgomery_st_01c.jpg" 
,"sfbay_1925_134-40_new_montgomery_st_02c.jpg" 
,"sfbay_1925_134-40_new_montgomery_st_03c.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 -->

