<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 11;
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://www.nd.edu/~aftls/reputation/images/1.gif" 
images[2] = "http://www.nd.edu/~aftls/reputation/images/2.gif" 
images[3] = "http://www.nd.edu/~aftls/reputation/images/3.gif"
images[4] = "http://www.nd.edu/~aftls/reputation/images/4.gif"
images[5] = "http://www.nd.edu/~aftls/reputation/images/5.gif" 
images[6] = "http://www.nd.edu/~aftls/reputation/images/6.gif"
images[7] = "http://www.nd.edu/~aftls/reputation/images/7.gif"
images[8] = "http://www.nd.edu/~aftls/reputation/images/8.gif"
images[9] = "http://www.nd.edu/~aftls/reputation/images/9.gif"
images[10] = "http://www.nd.edu/~aftls/reputation/images/10.gif"
images[11] = "http://www.nd.edu/~aftls/reputation/images/11.gif" 
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] = "Quotes from people discussing AFTLS." 
alttags[2] = "Quotes from people discussing AFTLS." 
alttags[3] = "Quotes from people discussing AFTLS." 
alttags[4] = "Quotes from people discussing AFTLS."
alttags[5] = "Quotes from people discussing AFTLS."
alttags[6] = "Quotes from people discussing AFTLS."
alttags[7] = "Quotes from people discussing AFTLS."
alttags[8] = "Quotes from people discussing AFTLS."
alttags[9] = "Quotes from people discussing AFTLS."
alttags[10] = "Quotes from people discussing AFTLS."
alttags[11] = "Quotes from people discussing AFTLS."
var alttag = alttags[rand1]

<!-- This section will draw the table and pull the image from the IMG SRC that you specify.-->
document.write('<IMG SRC="' + image + '" width="500" height="504" alt="' + alttag + '">')
// -- End Hiding Here -->
