<!-- Begin
var theImages = new Array()

theImages[0] = './images/laxmpCoverPix0.jpg'
theImages[1] = './images/laxmpCoverPix01.jpg'
theImages[2] = './images/laxmpCoverPix02.jpg'
theImages[3] = './images/laxmpCoverPix03.jpg'
theImages[4] = './images/laxmpCoverPix04.jpg'
theImages[5] = './images/laxmpCoverPix05.jpg'
theImages[6] = './images/laxmpCoverPix06.jpg'
theImages[7] = './images/laxmpCoverPix07.jpg'
theImages[8] = './images/laxmpCoverPix08.jpg'
theImages[9] = './images/laxmpCoverPix09.jpg'
theImages[10] = './images/laxmpCoverPix10.jpg'
theImages[11] = './images/laxmpCoverPix11.jpg'
theImages[12] = './images/laxmpCoverPix12.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 alt=Picture src="'+theImages[whichImage]+'">');
}

//  End -->