var spotlight = new Array();
spotlight[spotlight.length] = {src:"images/galleryPicture1.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture2.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture3.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture4.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture5.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture6.jpg", url:"gallery.html"};
spotlight[spotlight.length] = {src:"images/galleryPicture7.jpg", url:"gallery.html"};



	
function getSpotlight() {
	var currIndex = Math.floor(Math.random() * (spotlight.length));
	var output = "<a href='" + spotlight[currIndex].url + "'>";
	output += "<img src='" + spotlight[currIndex].src;
	output += "' alt='Photo Gallery' border='0' />" + "</a>"
	return output;
}
