var theImages = new Array() // do not change this
theImages[0] = '<a href=galleries.php><img src=photos/photo2-sm.jpg></a>'
theImages[1] = '<a href=galleries.php><img src=photos/photo5-sm.jpg></a>'
theImages[2] = '<a href=galleries.php><img src=photos/photo3-sm.jpg></a>'
theImages[3] = '<a href=galleries.php><img src=photos/photo4-sm.jpg></a>'
theImages[4] = '<a href=galleries.php><img src=photos/staff/DSC06141.jpg></a>'

// 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(theImages[whichImage]);
}
  function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    }
