// This script was supplied free by Hypergurl // http://www.hypergurl.com 
<!-- // JavaScript to interpolate random images into a page. 
var ic = 10; // Number of alternative images 
var xoxo = new Array(ic); // Array to hold filenames xoxo[0] = "http://www.yoursite.com/graphic1.gif";

xoxo[0] = "images/chambersite.jpg";
xoxo[1] = "images/concertsite.jpg";
xoxo[2] = "images/historysite.jpg";
xoxo[3] = "images/kidsite.jpg";
xoxo[4] = "images/librarysite.jpg";
xoxo[5] = "images/memorysite.jpg";
xoxo[6] = "images/muphisite.jpg";
xoxo[7] = "images/benjamusicsite.jpg";
xoxo[8] = "images/interfaithsite.jpg";
xoxo[9] = "images/mpefoundationsite.jpg";
function pickRandom(range)
{ 
	if (Math.random) return Math.round(Math.random() * (range-1)); 
	else { var now = new Date(); return (now.getTime() / 1000) % range; } 
} // Write out an IMG tag, using a randomly-chosen image name.

var choice = pickRandom(ic); 
// --> 
