

function randomContent()
{
var chosenImage=new Array();
// filenames of images in this array
chosenImage[1]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/TCoE/Savage-TCoE.jpg";
chosenImage[2]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/TCoE/Schwartz-TCoE.jpg";
chosenImage[3]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/TCoE/Luzik-TCoE.jpg";
chosenImage[4]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/TCoE/Ross-TCoE.jpg";

var chosenAltCopy=new Array();
// title and alt copy for images goes here
chosenAltCopy[1]="University of New Haven: Faculty Spotlight on Nancy Savage";
chosenAltCopy[2]="University of New Haven: Faculty Spotlight on Pauline Schwartz";
chosenAltCopy[3]="University of New Haven: Faculty Spotlight on Eddie Luzik";
chosenAltCopy[4]="University of New Haven: Faculty Spotlight on Stephen Ross";

var chosenLink=new Array();
// link information for images goes here
chosenLink[1]="http://www.newhaven.edu/academics/27649/";
chosenLink[2]="http://www.newhaven.edu/academics/27638/";
chosenLink[3]="http://www.newhaven.edu/academics/27615/";
chosenLink[4]="http://www.newhaven.edu/academics/30344/";

var getRan=Math.floor(Math.random()*chosenImage.length);
if (getRan==0)
getRan=1;

document.write('<a href=\"'+chosenLink[getRan]+'"/><img src=\"'+chosenImage[getRan]+'"alt=\"'+chosenAltCopy[getRan]+'\" border=\"0" /></a>');

}



