function cycleImage() {	img_captions = new Array();	// captions: (link-url,image-path,alt-text)	img_captions[0] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/1.jpg','Washington Hall');	img_captions[1] = Array('http://www.nd.edu/~opera/productions/orpheus/','http://www.nd.edu/~opera/assets/images/rotator/2.jpg','Orpheus Goes to Hell');	img_captions[2] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/3.jpg','Another image');			img_captions[3] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/orpheusfiddles.jpg','Orpheus on the Fiddle');			img_captions[4] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/hadespoolside.jpg','Hades - Lord of the Underworld');			img_captions[5] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/orpheusscolded.jpg','Public Opinion and Crowd scold Orpheus');			img_captions[6] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/plutoandposse.jpg','Pluto and his minions');			img_captions[7] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/venussings.jpg','The Goddess of Love after a night on the town');			img_captions[8] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/gonetohell.jpg','Gone to Hell Back in 15 minutes');			img_captions[9] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/eurydiceandfly.jpg','Jupiter seduces Eurydice disguessed as a fly');		img_captions[10] = Array('#','http://www.nd.edu/~opera/assets/images/rotator/diggersdebut.jpg','Digger Phelps as Bacchus with Eurydice');		var num = img_captions.length;	img_number  = Math.floor(Math.random()*(num));	document.write('<a href="' + img_captions[img_number][0] + '"><img src="' + img_captions[img_number][1] + '" alt="' + img_captions[img_number][2] + '" border="0" /></a>');}