<!--
function randomContent()
{
var chosenImage=new Array();
// filenames of images in this array
chosenImage[1]="1.jpg";
chosenImage[2]="2.jpg";
chosenImage[3]="3.jpg";
chosenImage[4]="4.jpg";
chosenImage[5]="5.jpg";
var chosenAltCopy=new Array();
// title and alt copy for images goes here
chosenAltCopy[1]="Heller Service Corps of Furman University";
chosenAltCopy[2]="Heller Service Corps of Furman University";
chosenAltCopy[3]="Heller Service Corps of Furman University";
chosenAltCopy[4]="Heller Service Corps of Furman University";
chosenAltCopy[5]="Heller Service Corps of Furman University";
var getRan=Math.floor(Math.random()*chosenImage.length);
if (getRan==0)
getRan=1;
document.write('<img src=\"images/photos/'+chosenImage[getRan]+'" alt=\"'+chosenAltCopy[getRan]+'\" width=\"672\" height=\"460\" />');
} 

