var thePics = new Array()
// Here is the picture array
thePics[1] = "falls.jpg"
thePics[2] = "flowers.jpg"
thePics[3] = "iueast.jpg"
var dir = 'images/splash_images/top_right/';
var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) { rn = 3 }
document.write("<img src='"+dir+thePics[rn]+"' width='585' height='182' alt='Richmond/Wayne County Chamber of Commerce' border='0' />")
