<!-- Hide


//configure the paths of the images, plus corresponding target links

slideshowimages(
   "images/20021208-Xmas2002-18.gif",
   "images/20021207-PICT0023.gif",
   "images/20021207-PICT0136.gif",
   "images/20021207-PICT0160.gif",
   "images/20021207-Xmas2002-8.gif",
   "images/20021207-PICT0180.gif",
   "images/20021207-PICT0144.gif")
slideshowlinks(
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html",
   "http://www.angelcitychorale.org/index.html")

//configure the speed of the slideshow, in miliseconds

var slideshowspeed=3000

var whichlink=0
var whichimage=0
function slideit(){
if (!document.images)
return
document.images.slide.src=slideimages[whichimage].src
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}
slideit()

//-->
