var ic = 5; // Number of alternative images 
var xoxo = new Array(ic); 
// Array to hold filenames 
xoxo[0] = "./images/Center/Alumni/alumni.jpg"; 
xoxo[1] = "./images/Center/Alumni/crawford.jpg"; 
xoxo[2] = "./images/Center/Alumni/peterson-faculty.jpg"; 
xoxo[3] = "./images/Center/Alumni/porter.jpg"; 
xoxo[4] = "./images/Center/Alumni/perc.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); 
document.writeln( '<img alt="Alumni and friends of KSU Physics" title="Alumni and friends of KSU Physics" src="' + xoxo[choice] + '">' );
