var ic = 10; // Number of alternative images 
var xoxo = new Array(ic); 
// Array to hold filenames 
xoxo[0] = "./images/Center/AndersonHall.gif";
xoxo[1] = "./images/Center/AndersonInSnow.gif";
xoxo[2] = "./images/Center/Butterfly.gif";
xoxo[3] = "./images/Center/cardwell-in-fall.gif";
xoxo[4] = "./images/Center/CloudsOverHills.gif";
xoxo[5] = "./images/Center/HaleLibrary.gif";
xoxo[6] = "./images/Center/PrairieFlowers.gif";
xoxo[7] = "./images/Center/PumpLasers.gif";
xoxo[8] = "./images/Center/SunsetOverGrassland.gif";
xoxo[9] = "./images/Center/Wildflowers.gif";
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); 
document.writeln( '<img alt="Scenes from Kansas State" title="Scenes from Kansas State" src="' + xoxo[choice] + '">' );


