<!-- 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_1905_222-26_jessie_st_01c.jpg" 
,"sfbay_1905_e_st_james_and_n_2nd_stc.jpg" 
,"sfbay_1908_1_montgomery_stc.jpg" 
,"sfbay_1891_220_montgomery_st_1c.jpg" 
,"sfbay_1907_50_green_st_01c.jpg" 
,"sfbay_1886_1000_california_st_1c.jpg" 
,"sfbay_1891_220_montgomery_st_1c.jpg" 
,"sfbay_1891_220_montgomery_st_2c.jpg" 
,"sfbay_1891_220_montgomery_st_3c.jpg" 
,"sfbay_1886_1000_california_st_1c.jpg" 
,"sfbay_1881_2151_sacramento_st_1c.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 -->

