// JavaScript Document

<!--
var theImages = new Array()

theImages[0] = '../images/wrap/random/01.jpg'
theImages[1] = '../images/wrap/random/02.jpg'
theImages[2] = '../images/wrap/random/03.jpg'
theImages[3] = '../images/wrap/random/04.jpg'
theImages[4] = '../images/wrap/random/05.jpg'
theImages[5] = '../images/wrap/random/06.jpg'
theImages[6] = '../images/wrap/random/07.jpg'
theImages[7] = '../images/wrap/random/08.jpg'
theImages[8] = '../images/wrap/random/09.jpg'
theImages[9] = '../images/wrap/random/10.jpg'
theImages[10] = '../images/wrap/random/11.jpg'
theImages[11] = '../images/wrap/random/12.jpg'
theImages[12] = '../images/wrap/random/13.jpg'
theImages[13] = '../images/wrap/random/14.jpg'
theImages[14] = '../images/wrap/random/15.jpg'
theImages[15] = '../images/wrap/random/16.jpg'
theImages[16] = '../images/wrap/random/17.jpg'
theImages[17] = '../images/wrap/random/18.jpg'
theImages[18] = '../images/wrap/random/19.jpg'
theImages[19] = '../images/wrap/random/20.jpg'
theImages[20] = '../images/wrap/random/21.jpg'
theImages[21] = '../images/wrap/random/22.jpg'
theImages[22] = '../images/wrap/random/23.jpg'
theImages[23] = '../images/wrap/random/24.jpg'
theImages[24] = '../images/wrap/random/25.jpg'

var a = 0
var b = theImages.length;
var preBuffer = new Array()
for (c = 0; c < b; c++){
   preBuffer[c] = new Image()
   preBuffer[c].src = theImages[c]
}
var whichImage = Math.round(Math.random()*(b-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" alt=Home title=Home>');
}
//-->
