<!-- Hide from old browsers

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();

Pic[0] = 'images/fountain.jpg'
Pic[1] = 'images/boathouse.jpg'
Pic[2] = 'images/geary.jpg'
Pic[3] = 'images/library.jpg'
Pic[4] = 'images/mono.jpg'
Pic[5] = 'images/mural.jpg'
Pic[6] = 'images/homes.jpg'
Pic[7] = 'images/sculpture.jpg'
Pic[8] = 'images/kaiser.jpg'
Pic[9] = 'images/station.jpg'
Pic[10] = 'images/mels.jpg'
Pic[11] = 'images/church.jpg'
Pic[12] = 'images/ocean.jpg'
Pic[13] = 'images/houses.jpg'
Pic[14] = 'images/wash.jpg'
Pic[15] = 'images/amphitheater.jpg'
Pic[16] = 'images/javaholics.jpg'
Pic[17] = 'images/building.jpg'
Pic[18] = 'images/4star.jpg'
Pic[19] = 'images/legion.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}

function aboutSwitch(seeAbout,whichImage)
	{
	document.images[seeAbout].src = whichImage
	}

function activitiesSwitch(seeActivities,whichImage)
	{
	document.images[seeActivities].src = whichImage
	}

function businessSwitch(seeBusiness,whichImage)
	{
	document.images[seeBusiness].src = whichImage
	}

function educationSwitch(seeEducation,whichImage)
	{
	document.images[seeEducation].src = whichImage
	}

function faithSwitch(seeFaith,whichImage)
	{
	document.images[seeFaith].src = whichImage
	}

function habitatSwitch(seeHabitat,whichImage)
	{
	document.images[seeHabitat].src = whichImage
	}

function healthSwitch(seeHealth,whichImage)
	{
	document.images[seeHealth].src = whichImage
	}

function homeSwitch(seeHome,whichImage)
	{
	document.images[seeHome].src = whichImage
	}

function orgSwitch(seeOrg,whichImage)
	{
	document.images[seeOrg].src = whichImage
	}

function recSwitch(seeRec,whichImage)
	{
	document.images[seeRec].src = whichImage
	}

function seniorsSwitch(seeSeniors,whichImage)
	{
	document.images[seeSeniors].src = whichImage
	}

function tourSwitch(seeTour,whichImage)
	{
	document.images[seeTour].src = whichImage
	}

function townhallSwitch(seeTownhall,whichImage)
	{
	document.images[seeTownhall].src = whichImage
	}

//End of script -->
