<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 8;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

<!-- This is where you specify the location and titles of the images in your rotation. -->
images = new Array
images[1] = "http://ethicscenter.nd.edu/images/rotation/pope/pope1.jpg" 
images[2] = "http://ethicscenter.nd.edu/images/rotation/pope/pope2.jpg" 
images[3] = "http://ethicscenter.nd.edu/images/rotation/pope/pope3.jpg"
images[4] = "http://ethicscenter.nd.edu/images/rotation/pope/pope4.jpg"
images[5] = "http://ethicscenter.nd.edu/images/rotation/pope/pope5.jpg"
images[6] = "http://ethicscenter.nd.edu/images/rotation/pope/pope6.jpg"
images[7] = "http://ethicscenter.nd.edu/images/rotation/pope/pope7.jpg"
images[8] = "http://ethicscenter.nd.edu/images/rotation/pope/pope8.jpg"
var image = images[rand1]

<!-- This section will create an alt text tag for your photograph, where you can specify the verbage a text-based browser will display.-->
alttags = new Array
alttags[1] = "" 
alttags[2] = "" 
alttags[3] = "" 
alttags[4] = "" 
alttags[5] = ""
alttags[6] = ""
alttags[7] = ""
alttags[8] = "" 
var alttag = alttags[rand1]

<!-- This section will pull the image from the IMG SRC that you specify.-->
document.write('<a href="http://ethicscenter.nd.edu/about/mission.shtml"><IMG SRC="' + image + '" border="0" alt="' + alttag + '"></a>')
// -- End Hiding Here -->



