<!-- random photo generator -->

var imagenumber = 12; 
var randomnumber = Math.random() ; 
var rand1 = Math.floor( (imagenumber-1) * randomnumber) + 1 ;  
var myimage = rand1 ;  

altTags = new Array
altTags[1] = "Photo: Gallatin City Hall at night"
altTags[2] = "Photo: Gallatin Public Libary - Art Display"
altTags[3] = "Photo: Gallatin Children's Library"
altTags[4] = "Photo: Gallatin Fire Department Training"
altTags[5] = "Photo: Square Festival"
altTags[6] = "Photo: Playing at the Dog Park"
altTags[7] = "Photo: Fire Safety Clowns"
altTags[8] = "Photo: Gallatin Public Library Event - Beijing Opera"
altTags[9] = "Photo: Rosemont"
altTags[10] = "Photo: Monument at Trousdale Place"
altTags[11] = "Photo: Square Festival"
var myalt = altTags[rand1]

captions = new Array
captions[1] = "Gallatin City Hall"
captions[2] = "Gallatin Public Libary - Art Display"
captions[3] = "Gallatin Children's Library"
captions[4] = "Gallatin Fire Department Training"
captions[5] = "Square Festival"
captions[6] = "Playing at the Dog Park"
captions[7] = "Fire Safety Clowns"
captions[8] = "Gallatin Public Library Event - Beijing Opera"
captions[9] = "Rosemont"
captions[10] = "Trousdale Place Monument"
captions[11] = "Square Festival"
var mycaption = captions[rand1]



<!-- end random photo -->