<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 18;
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/inspires/dawson.jpg" 
images[2] = "http://ethicscenter.nd.edu/images/rotation/inspires/anscombe.jpg" 
images[3] = "http://ethicscenter.nd.edu/images/rotation/inspires/brownson.jpg"
images[4] = "http://ethicscenter.nd.edu/images/rotation/inspires/chesterton.jpg"
images[5] = "http://ethicscenter.nd.edu/images/rotation/inspires/day.jpg" 
images[6] = "http://ethicscenter.nd.edu/images/rotation/inspires/lewis.jpg" 
images[7] = "http://ethicscenter.nd.edu/images/rotation/inspires/maritain.jpg" 
images[8] = "http://ethicscenter.nd.edu/images/rotation/inspires/newman.jpg" 
images[9] = "http://ethicscenter.nd.edu/images/rotation/inspires/sayers.jpg"
images[10] = "http://ethicscenter.nd.edu/inspires/images/mestrovic.jpg"
images[11] = "http://ethicscenter.nd.edu/inspires/images/moreau.jpg" 
images[12] = "http://ethicscenter.nd.edu/inspires/images/nutting.jpg"
images[13] = "http://ethicscenter.nd.edu/inspires/images/ohara.jpg"
images[14] = "http://ethicscenter.nd.edu/inspires/images/omalley.jpg"
images[15] = "http://ethicscenter.nd.edu/inspires/images/simon.jpg" 
images[16] = "http://ethicscenter.nd.edu/inspires/images/sorin.jpg"
images[17] = "http://ethicscenter.nd.edu/inspires/images/ward.jpg" 
images[18] = "http://ethicscenter.nd.edu/inspires/images/zahm.jpg"   
var image = images[rand1]

<!-- This is where you specify the links of the images in your rotation. -->
pages = new Array
pages[1] = "http://ethicscenter.nd.edu/inspires/dawson.shtml" 
pages[2] = "http://ethicscenter.nd.edu/inspires/anscombe.shtml" 
pages[3] = "http://ethicscenter.nd.edu/inspires/brownson.shtml"
pages[4] = "http://ethicscenter.nd.edu/inspires/chesterton.shtml"
pages[5] = "http://ethicscenter.nd.edu/inspires/day.shtml" 
pages[6] = "http://ethicscenter.nd.edu/inspires/lewis.shtml" 
pages[7] = "http://ethicscenter.nd.edu/inspires/maritain.shtml" 
pages[8] = "http://ethicscenter.nd.edu/inspires/newman.shtml" 
pages[9] = "http://ethicscenter.nd.edu/inspires/sayers.shtml"
pages[10] = "http://ethicscenter.nd.edu/inspires/mestrovic.shtml"
pages[11] = "http://ethicscenter.nd.edu/inspires/moreau.shtml" 
pages[12] = "http://ethicscenter.nd.edu/inspires/nutting.shtml" 
pages[13] = "http://ethicscenter.nd.edu/inspires/ohara.shtml"
pages[14] = "http://ethicscenter.nd.edu/inspires/fomalley.shtml"
pages[15] = "http://ethicscenter.nd.edu/inspires/simon.shtml" 
pages[16] = "http://ethicscenter.nd.edu/inspires/sorin.shtml" 
pages[17] = "http://ethicscenter.nd.edu/inspires/lrward.shtml" 
pages[18] = "http://ethicscenter.nd.edu/inspires/jzahm.shtml" 
var page = pages[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] = "" 
alttags[9] = ""
alttags[10] = ""
alttags[11] = "" 
alttags[12] = "" 
alttags[13] = "" 
alttags[14] = "" 
alttags[15] = "" 
alttags[16] = "" 
alttags[17] = "" 
alttags[18] = "" 
var alttag = alttags[rand1]


<!-- This section will pull the image from the IMG SRC that you specify.-->
document.write('<a href="' + page + '"><IMG SRC="' + image + '" border="0" alt="' + alttag + '"></a>')
// -- End Hiding Here -->




