// select a random testimonial
var photos = new Array();

photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_1.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_youth1.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_about1.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_leadership1.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_general2.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_edu.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_general1.jpg'};
photos[photos.length] = {url:'/wordpress/wp-content/themes/goodshepherd/images/photo_montage_2.jpg'};



function getPhoto() {
	if (!document.getElementById("randomPhoto")) return false;
	if (photos.length > 0) {
		var currentIndex = Math.floor(Math.random() * (photos.length));
		var p = '<img src="' + photos[currentIndex].url + '" width="425" height="120" alt="photos">';
		document.getElementById("randomPhoto").innerHTML = p;
	}
}
