// JavaScript Document


<!-- Begin
// 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.

theImages[0] = 'i/left/cargo-plane-nose.jpg'
theImages[1] = 'i/left/chess1.jpg'
theImages[2] = 'i/left/chess2.jpg'
theImages[3] = 'i/left/chess3.jpg'
theImages[4] = 'i/left/chess4.jpg'
theImages[5] = 'i/left/construction.jpg'
theImages[6] = 'i/left/glass-globe.jpg'
theImages[7] = 'i/left/hangar.jpg'
theImages[8] = 'i/left/pilots-arm.jpg'
theImages[9] = 'i/left/plane-departing.jpg'
theImages[10] = 'i/left/plane-flying.jpg'
theImages[11] = 'i/left/warehouse-empty.jpg'
theImages[12] = 'i/left/plane-landing.jpg'
theImages[13] = 'i/left/tower.jpg'
theImages[14] = 'i/left/terminal.jpg'
theImages[15] = 'i/left/storage.jpg'
theImages[16] = 'i/left/runway.jpg'
theImages[17] = 'i/left/plane.jpg'
theImages[18] = 'i/left/departure.jpg'
theImages[19] = ' i/left/gate.jpg' 
theImages[20] = ' i/left/left.jpg'




// 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('<img src="'+theImages[whichImage]+'">');
}

//  End -->
