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

function rotatePhoto(){
	
var photoList = new Array()
photoList[0] = "http://ccat.sas.upenn.edu/german/photos/Codex109-1.jpg"
photoList[1] = "http://ccat.sas.upenn.edu/german/photos/Codex109-2.jpg"
photoList[2] = "http://ccat.sas.upenn.edu/german/photos/Codex109-3.jpg"
photoList[3] = "http://ccat.sas.upenn.edu/german/photos/Codex109-5.jpg"
photoList[4] = "http://ccat.sas.upenn.edu/german/photos/Codex738-1.jpg"
photoList[5] = "http://ccat.sas.upenn.edu/german/photos/Codex738-2.jpg"
photoList[6] = "http://ccat.sas.upenn.edu/german/photos/Codex739.jpg"
photoList[7] = "http://ccat.sas.upenn.edu/german/photos/Codex1073-1.jpg"
photoList[8] = "http://ccat.sas.upenn.edu/german/photos/Codex1114-2.jpg"
photoList[9] = "http://ccat.sas.upenn.edu/german/photos/Learned-1.jpg"
photoList[10] = "http://ccat.sas.upenn.edu/german/photos/Learned-5.jpg"
photoList[11] = "http://ccat.sas.upenn.edu/german/photos/Learned-6.jpg"
photoList[12] = "http://ccat.sas.upenn.edu/german/photos/Learned-7.jpg"
photoList[13] = "http://ccat.sas.upenn.edu/german/photos/26a-1-26.jpg"
photoList[14] = "http://ccat.sas.upenn.edu/german/photos/76-3-57.jpg"
photoList[15] = "http://ccat.sas.upenn.edu/german/photos/96-2-29.jpg"
photoList[16] = "http://ccat.sas.upenn.edu/german/photos/100_5301-1.jpg"
photoList[17] = "http://ccat.sas.upenn.edu/german/photos/135-4-01.jpg"
photoList[18] = "http://ccat.sas.upenn.edu/german/photos/156-4-21.jpg"
photoList[19] = "http://ccat.sas.upenn.edu/german/photos/193-5-04.jpg"
photoList[20] = "http://ccat.sas.upenn.edu/german/photos/1072-9-08.jpg"
photoList[21] = "http://ccat.sas.upenn.edu/german/photos/1081-9-15.jpg"
photoList[22] = "http://ccat.sas.upenn.edu/german/photos/1090-9-24.jpg"
photoList[23] = "http://ccat.sas.upenn.edu/german/photos/1100-2-07.jpg"
photoList[24] = "http://ccat.sas.upenn.edu/german/photos/1192-3-52.jpg"
photoList[25] = "http://ccat.sas.upenn.edu/german/photos/1251-13-03.jpg"
photoList[26] = "http://ccat.sas.upenn.edu/german/photos/1260-13-13.jpg"
photoList[27] = "http://ccat.sas.upenn.edu/german/photos/1283-15-17.jpg"
photoList[28] = "http://ccat.sas.upenn.edu/german/photos/DutchLeaf.jpg"

document.photo.src=photoList[x];

return true;

}

function captions() {
	
var captionsList = new Array()
captionsList[0] = "Feuerwerkbuch, late 16th century"
captionsList[1] = "Feuerwerkbuch, late 16th century"
captionsList[2] = "Feuerwerkbuch, late 16th century"
captionsList[3] = "Feuerwerkbuch, late 16th century"
captionsList[4] = "Flemish Book of Hours"
captionsList[5] = "Flemish Book of Hours"
captionsList[6] = "From the Codex Manuscripts, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[7] = "From the Codex Manuscripts, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[8] = "From the Codex Manuscripts, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[9] =  "From the Learned Collection, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[10] = "From the Learned Collection, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[11] = "From the Learned Collection, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[12] = "From the Learned Collection, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[13] = "Alma Mahler, 1879-1964 (ca. 1900)"
captionsList[14] = "Walter Gropius, 1883-1969, n.d."
captionsList[15] = "Anna Mahler, n.d."
captionsList[16] = "From the Mahler-Werfel Collection, courtesy of Penn's Rare Book and Manuscripts Library"
captionsList[17] = "Franz Werfel, 1890-1945 (Prague, Czechoslovakia, 1891)"
captionsList[18] = "Franz Werfel, 1890-1945 (Paris, early 1920s)"
captionsList[19] = "Franz Werfel, 1890-1945 (ca.1937)"
captionsList[20] = "Gerhart Hauptmann, 1862-1946, (ca. 1928)"
captionsList[21] = "Thomas Mann, 1875-1955"
captionsList[22] = "Adolf Menzel, 1815-1945"
captionsList[23] = "Alma Mahler, 1879-1964; Otto Klemperer, 1885-1973"
captionsList[24] = "Gustav Mahler, 1860-1911"
captionsList[25] = "Münden, Germany, ca. 1884"
captionsList[26] = "Wilhelmshöhe, Germany, ca. 1883"
captionsList[27] = "Franz Werfel, 1890-1945 ( Dresden, 1925)"
captionsList[28] = "From the Codex Manuscripts, courtesy of Penn's Rare Book and Manuscripts Library"

	
document.write(captionsList[x]);

return true;

}

