<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 10;
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/big_pic_deer.jpg" 
images[2] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_flower.jpg" 
images[3] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_flower2.jpg"
images[4] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_flower3.jpg"
images[5] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_loon.jpg"
images[6] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_grasshopper.jpg"
images[7] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_turtle.jpg"
images[8] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_ladyslipper.jpg"
images[9] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_deer2.jpg"
images[10] = "http://www.nd.edu/~underc/east/images/rotation/big_pic_creek.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 aster flower" 
alttags[3] = "Image of aster flower" 
alttags[4] = "Image of aster flower"
alttags[5] = "Image of loon"
alttags[6] = "Image of grasshopper"
alttags[7] = "Image of snapping turtle"
alttags[8] = "Image of ladyslipper"
alttags[9] = "Image of fawn on bay lake"
alttags[10] = "Image of tenderfoot creek"
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="740" height="203" alt="' + alttag + '"></a>')
// -- End Hiding Here -->


