

function randomContent()
{
var chosenImage=new Array();
// filenames of images in this array
chosenImage[1]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/sack.jpg";
chosenImage[2]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/upadhyaya.jpg";
chosenImage[3]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/palmbach.jpg";
chosenImage[4]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/sapi.jpg";
chosenImage[5]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/morris.jpg";
chosenImage[6]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/vigue.jpg";
chosenImage[7]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/gaboury.jpg";
chosenImage[8]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/ross.jpg";
chosenImage[9]="http://www.newhaven.edu/unh/marketing/academics/facultyprofiles/ads/Grad/Tafoya-Grad.jpg";

var chosenAltCopy=new Array();
// title and alt copy for images goes here
chosenAltCopy[1]="University of New Haven: Faculty Spotlight on Allen Sack";
chosenAltCopy[2]="University of New Haven: Faculty Spotlight on Kamal Upadhyaya";
chosenAltCopy[3]="University of New Haven: Faculty Spotlight on Timothy Palmbach";
chosenAltCopy[4]="University of New Haven: Faculty Spotlight on Eva Sapi";
chosenAltCopy[5]="University of New Haven: Faculty Spotlight on Michael Morris";
chosenAltCopy[6]="University of New Haven: Faculty Spotlight on Charles Vigue";
chosenAltCopy[7]="University of New Haven: Faculty Spotlight on Mario Gaboury";
chosenAltCopy[8]="University of New Haven: Faculty Spotlight on Stephen Ross";
chosenAltCopy[9]="University of New Haven: Faculty Spotlight on Bill Tafoya";

var chosenLink=new Array();
// link information for images goes here
chosenLink[1]="http://www.newhaven.edu/academics/faculty/spotlight/27612/";
chosenLink[2]="http://www.newhaven.edu/academics/faculty/spotlight/27621/";
chosenLink[3]="http://www.newhaven.edu/academics/faculty/spotlight/27624/";
chosenLink[4]="http://www.newhaven.edu/academics/faculty/spotlight/27632/";
chosenLink[5]="http://www.newhaven.edu/academics/faculty/spotlight/27635/";
chosenLink[6]="http://www.newhaven.edu/academics/faculty/spotlight/27627/";
chosenLink[7]="http://www.newhaven.edu/academics/faculty/spotlight/27609/";
chosenLink[8]="http://www.newhaven.edu/academics/faculty/spotlight/30344/";
chosenLink[9]="http://www.newhaven.edu/academics/faculty/spotlight/33224/";

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>');

}


