/***********************************************
* Flexi Slideshow- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
* Place script where you wish slideshow to appear in document BODY
* Use &apos; in slide titles to avoid the apostrophe
*********************************************/

var variableslide=new Array()

//variableslide[x]=["image path", "optional image_link", "optional text_description (supports HTML tags)"]

variableslide[0]=
['sfbay_1950_2960_vallejo_st_01m.jpg', 'sfbay0004ref_je_01.html#e06', '<div align="center">House</div>']
variableslide[1]=
['sfbay_1951_75_raycliff_terr_01m.jpg', 'sfbay0004ref_je_01.html#e08', '<div align="center">House</div>']
variableslide[2]=
['sfbay_1953_3074_pacific_av_01m.jpg', 'sfbay0004ref_je_01.html#e10', '<div align="center">House</div>']
variableslide[3]=
['sfbay_1963_20-24_culebra_terr_01m.jpg', 'sfbay0004ref_je_02.html#e10', '<div align="center">Apts.</div>']
variableslide[4]=
['sfbay_1963_100_32nd_av_01m.jpg', 'sfbay0004ref_je_03.html#e01', '<div align="center">House</div>']
variableslide[5]=
['sfbay_1963_100_32nd_av_02m.jpg', 'sfbay0004ref_je_03.html#e01', '<div align="center">House</div>']
variableslide[6]=
['sfbay_1963_3323_pacific_av_01m.jpg', 'sfbay0004ref_je_03.html#e02', '<div align="center">House</div>']
variableslide[7]=
['sfbay_1966_490_12th_av_01m.jpg', 'sfbay0004ref_je_03.html#e07', '<div align="center">Christ the Saviour Greek Orthodox Church</div>']
variableslide[8]=
['sfbay_1968_2801_leavenworth_st_01m.jpg', 'sfbay0004ref_je_04.html#e04', '<div align="center">The Cannery</div>']
variableslide[9]=
['sfbay_1968_2801_leavenworth_st_02m.jpg', 'sfbay0004ref_je_04.html#e04', '<div align="center">The Cannery</div>']
variableslide[10]=
['sfbay_1972_folsom_at_15th_01m.jpg', 'sfbay0004ref_je_04.html#e10', '<div align="center">Far West Laboratory</div>']
variableslide[11]=
['sfbay_1979_333_bay_st_01m.jpg', 'sfbay0004ref_je_05.html#e02', '<div align="center">Trinity Properties</div>']
variableslide[12]=
['sfbay_1981_420_filbert_st_01m.jpg', 'sfbay0004ref_je_05.html#e04', '<div align="center">Garfield School</div>']
variableslide[13]=
['sfbay_1981_420_filbert_st_02m.jpg', 'sfbay0004ref_je_05.html#e04', '<div align="center">Garfield School</div>']
variableslide[14]=
['sfbay_1984_1020_vallejo_st_01m.jpg', 'sfbay0004ref_je_05.html#e05', '<div align="center">Hermitage Condominiums</div>']
variableslide[15]=
['sfbay_1990_2550_divisidero_st_01m.jpg', 'sfbay0004ref_je_05.html#e08', '<div align="center">House</div>']
variableslide[16]=
['sfbay_1990_2550_divisidero_st_02m.jpg', 'sfbay0004ref_je_05.html#e08', '<div align="center">House</div>']
variableslide[17]=
['sfbay_1992_2390_bush_st_01m.jpg', 'sfbay0004ref_je_05.html#e09', '<div align="center">St. Dominic&apos;s Church</div>']
variableslide[18]=
['sfbay_1992_2390_bush_st_02m.jpg', 'sfbay0004ref_je_05.html#e09', '<div align="center">St. Dominic&apos;s Church</div>']

//variableslide[00]=['graphic.jpg', 'link.html#e00', '<div align="center">description</div>']

//configure slide variables: width, height, bgcolor, delay (miliseconds)

var slidewidth='210px' 
var slideheight='150px' 
var slidebgcolor='#ffffff'
var slidedelay=5000

////Do not edit below this line////////////////

var ie=document.all
var dom=document.getElementById

for (i=0;i<variableslide.length;i++){
var cacheimage=new Image()
cacheimage.src=variableslide[i][0]
}

var currentslide=0

function rotateimages(){
contentcontainer='<center>'
if (variableslide[currentslide][1]!="")
contentcontainer+='<a href="'+variableslide[currentslide][1]+'">'
contentcontainer+='<img src="'+variableslide[currentslide][0]+'" border="0" vspace="3">'
if (variableslide[currentslide][1]!="")
contentcontainer+='</a>'
contentcontainer+='</center>'
if (variableslide[currentslide][2]!="")
contentcontainer+=variableslide[currentslide][2]

if (document.layers){
crossrotateobj.document.write(contentcontainer)
crossrotateobj.document.close()
}
else if (ie||dom)
crossrotateobj.innerHTML=contentcontainer
if (currentslide==variableslide.length-1) currentslide=0
else currentslide++
setTimeout("rotateimages()",slidedelay)
}

if (ie||dom)
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')

function start_slider(){
crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub
if (document.layers)
document.slidensmain.visibility="show"
rotateimages()
}

if (ie||dom)
start_slider()
else if (document.layers)
window.onload=start_slider


