<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 14;
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/~underc/east/images/rotation/suprt_pic_deer2.jpg" 
images[2] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower.jpg" 
images[3] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower2.jpg"
images[4] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower3.jpg"
images[5] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower4.jpg"
images[6] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower6.jpg"
images[7] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower7.jpg"
images[8] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_flower9.jpg"
images[9] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_sal2.jpg"
images[10] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_lake.jpg"
images[11] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_pitcher.jpg"
images[12] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_bergner.jpg"
images[13] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_class.jpg"
images[14] = "http://www.nd.edu/~underc/east/images/rotation/suprt_pic_porcupine.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] = "Image of whitetail deer" 
alttags[2] = "Image of flower" 
alttags[3] = "Image of flower" 
alttags[4] = "Image of flower"
alttags[5] = "Image of flower"
alttags[6] = "Image of flower"
alttags[7] = "Image of flower"
alttags[8] = "Image of flower"
alttags[9] = "Image of salamander"
alttags[10] = "Image of lake"
alttags[11] = "Image of pitcher plant"
alttags[12] = "Image of bergner lake"
alttags[13] = "Image of classwork"
alttags[14] = "Image of porcupine"
var alttag = alttags[rand1]

<!-- This section will pull the image from the IMG SRC that you specify.-->
document.write('<a href="http://www.nd.edu/~underc/east/multimedia/" title="Go To UNDERC East Multimedia Gallery"><IMG SRC="' + image + '" border="0" width="191" height="203" alt="' + alttag + '"></a>')
// -- End Hiding Here -->