var x = Math.round(Math.random()*11)

function rotatePhoto(){
	
var photoList = new Array()
photoList[0] = "http://www.classics.upenn.edu/photos/Acharnians.jpg"
photoList[1] = "http://www.classics.upenn.edu/photos/Iphigenia.jpg"
photoList[2] = "http://www.classics.upenn.edu/photos/1751.jpg"
photoList[3] = "http://www.classics.upenn.edu/photos/1792.jpg"
photoList[4] = "http://www.classics.upenn.edu/photos/1882.jpg"
photoList[5] = "http://www.classics.upenn.edu/photos/1974.jpg"
photoList[6] = "http://www.classics.upenn.edu/photos/Alison_Francis.jpg"
photoList[7] = "http://www.classics.upenn.edu/photos/Thomson_Charles.jpg"
photoList[8] = "http://www.classics.upenn.edu/photos/Williamson_Hugh.jpg"
photoList[9] = "http://www.classics.upenn.edu/photos/Wylie_Samuel.jpg"
photoList[10] = "http://www.classics.upenn.edu/photos/Allen_George.jpg"
photoList[11] = "http://www.classics.upenn.edu/photos/Iphigenia_poster.jpg"


document.photo.src=photoList[x];

return true;

}

function captions() {
	
var captionsList = new Array()
captionsList[0] = "Program for the 1886 student production of Aristophanes' <i>Acharnians</i>"
captionsList[1] = "Cast of the 1903 student production of Euripides' <i>Iphigenia at Tauris</i>"
captionsList[2] = "College of Philadelphia, first campus, Fourth and Arch Streets"
captionsList[3] = "President's house at Ninth and Market Streets, 1800"
captionsList[4] = "Medical Hall, ca. 1890 (renamed Logan Hall, 1906; now Claudia Cohen Hall)"
captionsList[5] = "Blanche P. Levy Park (The Green), center of the Penn campus"
captionsList[6] = "Francis Alison, Professor of Greek and Latin (1755&ndash;1759)"
captionsList[7] = "Charles Thomson, Latin School Tutor (1751&ndash;1755)"
captionsList[8] = "Hugh Williamson, Latin School Tutor (1755&ndash;1758)"
captionsList[9] = "Samuel Brown Wylie, Professor of Ancient Languages (1828&ndash;1845)"
captionsList[10] = "George Allen, Professor of Greek and Latin (1845&ndash;1876)"
captionsList[11] = "Poster for the 1903 student production of Euripides' <i>Iphigenia at Tauris</i>"

document.write(captionsList[x]);

return true;

}

