var theImages = new Array()
theImages[0] = 'images/random/april2009_0047_red_tail_Tim_Watson.jpg'
theImages[1] = 'images/random/December2008_0058_arapaima_Marcus.jpg'
theImages[2] = 'images/random/February2009_0022_Mekong_catfish_Pete.jpg'
theImages[3] = 'images/random/February2009_0028_Siamese_carp_110lb_David_Arber.jpg'
theImages[4] = 'images/random/january2009_0029_Siamese_carp_90lb_Steve.jpg'
theImages[5] = 'images/random/january2009_0041_stingray_120LB_Kieth.jpg'
theImages[6] = 'images/random/january2009_0049_Mekong_catfish_150lb_Ida.jpg'
theImages[7] = 'images/random/january2009_0050_Siamese_carp_120lb_Ida.jpg'
theImages[8] = 'images/random/january2009_0062_stingray_Job.jpg'
theImages[9] = 'images/random/Library_Arapaima_Terry_Eustace_220lbs.jpg'
theImages[10] = 'images/random/Library_Red_Tail_Catfish_Jaimes.jpg'
theImages[11] = 'images/random/march2008_0006_arapaima_Dave_Roper_150kg.jpg'
theImages[12] = 'images/random/may2008_0004_arapaima_John_Allen_350lbs.jpg'
theImages[13] = 'images/random/Mekong_Catfish_0011_Rob_Maylin_world_record_84kg.jpg'
theImages[14] = 'images/random/Mekong_Catfish_0012_Joe_Taylor_47kg.jpg'
theImages[15] = 'images/random/september2008_0001_Red_Tail_Catfish_Vince.jpg'
theImages[16] = 'images/random/september2008_0015_Red_Tail_Catfish_Adam.jpg'
theImages[17] = 'images/random/september2008_0021_Arapaima_Adam.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]+'">');
}