// JavaScript Document

var theImages = new Array()

theImages[0] = 'randoms/random_00.jpg'
theImages[1] = 'randoms/random_01.jpg'
theImages[2] = 'randoms/random_02.jpg'
theImages[3] = 'randoms/random_03.jpg'
theImages[4] = 'randoms/random_04.jpg'
theImages[5] = 'randoms/random_05.jpg'
theImages[6] = 'randoms/random_06.jpg'
theImages[7] = 'randoms/random_07.jpg'


var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="190" />');
}