
<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'Callisaurus draconoides (17).jpg'
theImages[1] = 'Yellowstone NP, WY (2).jpg'
theImages[2] = '10_.jpg'
theImages[3] = 'Tegrodera_aloga.jpg'
theImages[4] = '13_.jpg'
theImages[5] = 'Sandia Mtns, NM (1).jpg'
theImages[6] = '15_.jpg'
theImages[7] = 'TLK_5166.jpg'
theImages[8] = 'Asilidae, Bitter Lakes NWR, NM (2).jpg'
theImages[9] = 'Erpetogomphus designatus.jpg'
theImages[10] = 'Swans.jpg'
theImages[11] = 'BlueGrosbeak.jpg'
theImages[12] = 'Hotspring, Yellowstone NP, WY (17).jpg'
theImages[13] = 'TOM_9210.jpg'
theImages[14] = 'Platygobio_gracilis.jpg'
theImages[15] = '14_.jpg'
theImages[16] = 'TLK_5141.jpg'
theImages[17] = '8_.jpg'
theImages[18] = 'Yellowstone NP, WY  (14).jpg'
theImages[19] = 'Meloida spp Bitter Lakes NWR, NM (2).jpg'
theImages[20] = 'Monsoonal rains at Kofa.jpg'
theImages[21] = 'Baezo_Ecuador_(5).jpg'
theImages[22] = 'centris.jpg'
theImages[23] = 'Thermopholic Bacteria, Yellowstone National Park, WY.jpg'
theImages[24] = 'DesertWhitetail.jpg'
theImages[25] = 'Phainopepla (5).jpg'
theImages[26] = 'Sampling 2005 041.jpg'
theImages[27] = 'Coleonyx variegatus (10).jpg'
theImages[28] = 'Lynx rufus, Chiricahua Mts, AZ (388).jpg'
theImages[29] = 'Eriphia_squamata_Osa_Peninsula_Costa_Rica_(426).jpg'
theImages[30] = 'LazuliBunting.jpg'
theImages[31] = 'Cottonwoods in the Bosque.jpg'
theImages[32] = 'Hot springs, Jemez Mts, NM (1).jpg'
theImages[33] = 'Phrynosoma_platyrhinos.jpg'
theImages[34] = '12_.jpg'
theImages[35] = 'Centrolene_ilex_Mindo_Ecuador_(10).jpg'
theImages[36] = 'Gray-breasted Jay, Chiricahua Mts, AZ (203).jpg'
theImages[37] = 'Mindo_Ecuador_(62).jpg'
theImages[38] = '9_.jpg'
theImages[39] = 'Dipsosaraus dorsalis (14).jpg'
theImages[40] = 'Mindo_Ecuador_(32).jpg'
theImages[41] = 'San Marcial, October (1).jpg'
theImages[42] = 'TOM_7467.jpg'
theImages[43] = 'Gerris sp, Chiricahua Mts, AZ (342).jpg'
theImages[44] = 'TOM_7750.jpg'
theImages[45] = 'TOM_8216.jpg'
theImages[46] = 'Townsends Warbler (1).jpg'
theImages[47] = 'Cave Creek, Chiricahua Mts, AZ (116).jpg'
theImages[48] = 'turtles.jpg'
theImages[49] = 'Western-Screech-Owl (17).jpg'
theImages[50] = 'Western Tanager (1).jpg'
theImages[51] = 'Yellow Warbler (2).jpg'
theImages[52] = 'ApolloScreenShot.jpg'
theImages[53] = 'PIL1.jpg'
theImages[54] = 'Apachian Valleys and low Hills, Hildago County, NM (236).jpg'
theImages[55] = 'Gonypeptidae_Ecuador_(9).jpg'
theImages[56] = 'Hypsiboas_picturatus_Mindo_Ecuador_(9).jpg'
theImages[57] = 'Mindo_Ecuador_(146).jpg'
theImages[58] = 'POE_2844_Anolis_proboscis_male_(3).jpg'
theImages[59] = 'Roadside_Hawk_Osa_Peninsula_Costa_Rica_(3).jpg'


// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="imagerotate/'+theImages[whichImage]+'">');
}
showImage();
//  End -->



