<!--

//configure the paths of the images, plus corresponding target links
slideshowimages("http://calcrusnews.com/images/seal inglewood.jpg",
"http://calcrusnews.com/images/seal carson.jpg",
"http://calcrusnews.com/images/seal Compton.jpg",
"http://calcrusnews.com/images/seal culver city.jpg",
"http://calcrusnews.com/images/seal gardena.jpg",
"http://calcrusnews.com/images/seal lawndale.jpg",
"http://calcrusnews.com/images/seal la.jpg",
"http://calcrusnews.com/images/seal manhattan.jpg",
"http://calcrusnews.com/images/seal redondo.jpg",
"http://calcrusnews.com/images/sealHawthorne.jpg",
"http://calcrusnews.com/images/sealTorrance.jpg")
slideshowlinks("http://www.cityofinglewood.org/default.asp",
"http://ci.carson.ca.us/",
"http://www.comptoncity.org/",
"http://www.culvercity.org/",
"http://www.ci.gardena.ca.us/government/default.asp",
"http://www.lawndalecity.org/",
"http://lacity.org/lacity/",
"http://www.ci.manhattan-beach.ca.us/",
"http://www.redondo.org/default.asp",
"http://cityofhawthorne.com/",
"http://www.ci.torrance.ca.us/",
"http://exclusiveinfo.net")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2000

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()

//-->


