


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/new_courthouse.png alt=" " width=149 height=152'; 

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/sutherland.jpg alt="Presented to US District Court by Snow, Christensen & Martineau, 2011" border=0  width=150 height=188'; // replace with names of images\
theImages[7] = '/graphics/courthouse_construction.png alt="" border=0  width=254 height=178'; // replace with names of images\

theTitles[0] = ' ';
theTitles[1] = 'Frank Moss Courthouse - SE corner';
theTitles[2] = 'Rendering of new Federal Courthouse, scheduled to be completed in 2014';
theTitles[3] = 'Historic Frank Moss Courthouse';
theTitles[4] = 'Frank Moss Courthouse';
theTitles[5] = 'Courtroom';
theTitles[6] = 'Bust of George Sutherland, Assoc. Justice, US Supreme Court, 1922-1938, presented to US District Court by Snow, Christensen & Martineau, 2011';
theTitles[7] = 'Construction of new Federal Courthouse, December, 2011';

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>');





