 <!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- 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] = '/random/images/mustangs.gif'
theImages[1] = '/random/images/nomad.gif'
theImages[2] = '/random/images/barracuda.gif'
theImages[3] = '/random/images/eldorado.gif'
theImages[4] = '/random/images/mercedes1.gif'
theImages[5] = '/random/images/python.gif'
theImages[6] = '/random/images/zowees.gif'
theImages[7] = '/random/images/LOLAGT70.gif'
theImages[8] = '/random/images/SixShooter.gif'
theImages[9] = '/random/images/PitCrewCar.gif'
theImages[10] = '/random/images/57Bird.JPG ' 
theImages[11] = '/random/images/Beatnic.JPG ' 
theImages[12] = '/random/images/LightmyFirebird.JPG' 
theImages[13] = '/random/images/MustangStreet.jpg' 
theImages[14] = '/random/images/Swingin.JPG' 
theImages[15] = '/random/images/J-Car.JPG' 
theImages[16] = '/random/images/Mutt.JPG' 
theImages[17] = '/random/images/Nitty.JPG' 
theImages[18] = '/random/images/Whip.JPG' 
theImages[19] = '/random/images/forsale.jpg'
theImages[20] = '/random/images/twinmills.gif'
theImages[21] = '/random/images/doreas.gif'
// 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 -->
 
