<!--


//specify interval between slide (in mili seconds)
var slidespeed=3000
//specify images
var slideimages=new Array("images/educational/k12education/alderwoodelem/1.jpg","images/educational/k12education/wadekingelem/1.jpg","images/commercial/thebankofthepacific/1.jpg","images/educational/highereducation/millerhall/1.jpg","images/publiccivic/lyndenpublicrestroom/1.jpg")

//specify corresponding links
var slidelinks=new Array("alderwoodelem.html","wadekingelem.html","thebankofthepacific.html","millerhall.html","lyndenpublicrestroom.html")

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->