	var currIndex = 0;
	var images = new Array();
	var currRecIndex = 0;
	var recimages = new Array();


	//edit links for each image here
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image1.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image2.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image3.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image4.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image5.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image6.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image7.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image8.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image9.jpg", url:"http://www.wacathedral.org"};
	images[images.length] = {src:"http://www.wacathedral.org/navPagePhotos/Image10.jpg", url:"http://www.wacathedral.org"};

	//edit links for each image here
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image1.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image2.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image3.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image4.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image5.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image6.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image7.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image8.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image9.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image10.jpg", url:"http://www.wacathedral.org"};
	recimages [recimages.length] = {src:"http://www.wacathedral.org/navPagePhotos/RecCenter/Image11.jpg", url:"http://www.wacathedral.org"};


	//use this setImages function for ordered display
	function setImages() {
			if (currIndex == images.length - 1) 
				currIndex = 0;
			else
				currIndex += 1;
	document.getElementById("ImageSwitch").src = images[currIndex].src;
	}

	//use this setImages function for ordered display
	function setRecImages() {
			if (currRecIndex == recimages.length - 1) 
				currRecIndex = 0;
			else
				currRecIndex += 1;
	document.getElementById("RecImageSwitch").src = recimages[currRecIndex].src;
	}

	//set the delay here in milliseconds, 3000 = 3 seconds
	function startInterval(){
		var interval = window.setInterval("setImages()", 5000);
		var recInterval = window.setInterval("setRecImages()", 5000);
	}
