


var theImages = new Array();
var theTitles = new Array();

//Random-loading images

theImages[0] = '/graphics/now2.jpg border=0 alt="Photo of Frank Moss Courthouse - front view" width=220 height=140'; // replace with names of images
theImages[1] = '/graphics/now3t2.jpg border=0 alt="Photo of Frank Moss Courthouse" width=220 height=140'; // replace with names of images
theImages[2] = '/graphics/thorshammer.jpg alt="Photo of Bryce Canyon National Park" width=220 height=140'; // replace with names of images
theImages[3] = '/graphics/Historic4t2.jpg border=0 alt="Historic photo of courthouse" width=220 height=140'; // replace with names of images
theImages[4] = '/graphics/courthouse_lions.jpg alt="Photo of courthouse facade with carvings of lions" border=0  width=220 height=140'; // replace with names of images
theImages[5] = '/graphics/historic_courtroom.jpg alt="Photo of historic courtroom" border=0  width=220 height=140'; // replace with names of images\
theImages[6] = '/graphics/thorshammer.jpg alt="Photo of Bryce Canyon National Park" border=0  width=220 height=140'; 

theTitles[0] = ' ';
theTitles[1] = 'Frank Moss Courthouse - SE corner';
theTitles[2] = 'Thor\'s Hammer - Bryce Canyon National Park';
theTitles[3] = 'Historic Frank Moss Courthouse';
theTitles[4] = 'Frank Moss Courthouse';
theTitles[5] = 'Courtroom';
theTitles[6] = 'Thor\'s Hammer - Bryce Canyon National Park';

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));

document.write('<img src='+theImages[whichImage]+ ' >');
document.write('<br /><span class="xx_small">' + theTitles[whichImage] + '</span></p>');




