<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'lrg-149-pw-015.jpg'
theImages[1] = 'lrg-147-pw-013.jpg'
theImages[2] = 'lrg-141-pw-007.jpg'
theImages[3] = 'lrg-140-pw-006.jpg'
theImages[4] = 'lrg-127-trailtotower.jpg'
theImages[5] = 'lrg-118-boathouse.jpg'
theImages[6] = 'lrg-109-steven.jpg'
theImages[7] = 'lrg-108-sebastian.jpg'
theImages[8] = 'lrg-102-ms-009.jpg'
theImages[9] = 'lrg-98-ms-005.jpg'
theImages[10] = 'lrg-90-al-007.jpg'
theImages[11] = 'lrg-83-printed-010.jpg'
theImages[12] = 'lrg-78-printed-005.jpg'
theImages[13] = 'lrg-61-adb-001.jpg'
theImages[14] = 'lrg-60-apr-012.jpg'
theImages[15] = 'lrg-59-apr-011.jpg'
theImages[17] = 'lrg-49-apr-001.jpg'
theImages[17] = 'lrg-48-ap-014.jpg'
theImages[18] = 'lrg-46-ap-012.jpg'
theImages[19] = 'lrg-45-ap-011.jpg'
// ======================================
// do not change 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('<img src="/thumbs/'+theImages[whichImage]+'">');
}

//-->