<!-- This Random Image script and many more are available free online -->
<!-- at The JavaScript Source! Visit: http://javascript.internet.com -->
<!-- Begin
var theImages = new Array()
theImages[0] = 'images/pix/bomberpic-1.jpg'
theImages[1] = 'images/pix/bomberpic-2.jpg'
theImages[2] = 'images/pix/bomberpic-3.jpg'
theImages[3] = 'images/pix/bomberpic-4.jpg'
theImages[4] = 'images/pix/bomberpic-5.jpg'
theImages[5] = 'images/pix/bomberpic-6.jpg'
theImages[6] = 'images/pix/bomberpic-7.jpg'
theImages[7] = 'images/pix/bomberpic-8.jpg'
theImages[8] = 'images/pix/bomberpic-9.jpg'
theImages[9] = 'images/pix/bomberpic-10.jpg'
theImages[10] = 'images/pix/bomberpic-11.jpg'
theImages[11] = 'images/pix/bomberpic-12.jpg'
theImages[12] = 'images/pix/bomberpic-13.jpg'
theImages[13] = 'images/pix/bomberpic-14.jpg'
theImages[14] = 'images/pix/bomberpic-15.jpg'
theImages[15] = 'images/pix/bomberpic-16.jpg'
theImages[16] = 'images/pix/bomberpic-17.jpg'
theImages[17] = 'images/pix/bomberpic-18.jpg'
theImages[18] = 'images/pix/bomberpic-19.jpg'
theImages[19] = 'images/pix/bomberpic-20.jpg'
theImages[20] = 'images/pix/bomberpic-21.jpg'
theImages[21] = 'images/pix/bomberpic-22.jpg'
theImages[22] = 'images/pix/bomberpic-23.jpg'
theImages[23] = 'images/pix/bomberpic-24.jpg'
theImages[24] = 'images/pix/bomberpic-25.jpg'
theImages[25] = 'images/pix/bomberpic-26.jpg'
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 -->
