var theLHImages = new Array()
theLHImages[0] = 'LHIPicture1.jpg'
theLHImages[1] = 'LHIPicture2.jpg'
theLHImages[2] = 'LHIPicture3.jpg'
theLHImages[3] = 'LHIPicture4.jpg'
theLHImages[4] = 'LHIPicture5.jpg'
theLHImages[5] = 'LHIPicture6.jpg'
theLHImages[6] = 'LHIPicture7.jpg'
theLHImages[7] = 'LHIPicture8.jpg'
theLHImages[8] = 'LHIPicture9.jpg'
theLHImages[9] = 'LHIPicture10.jpg'
theLHImages[10] = 'LHIPicture11.jpg'
theLHImages[11] = 'LHIPicture12.jpg'
theLHImages[12] = 'LHIPicture13.jpg'
theLHImages[13] = 'LHIPicture14.jpg'
theLHImages[14] = 'LHIPicture15.jpg'
theLHImages[15] = 'LHIPicture16.jpg'
theLHImages[16] = 'LHIPicture17.jpg'
theLHImages[17] = 'LHIPicture18.jpg'
theLHImages[18] = 'LHIPicture19.jpg'
theLHImages[19] = 'LHIPicture20.jpg'
theLHImages[20] = 'LHIPicture21.jpg'
theLHImages[21] = 'LHIPicture22.jpg'
theLHImages[22] = 'LHIPicture23.jpg'
theLHImages[23] = 'LHIPicture24.jpg'
theLHImages[24] = 'LHIPicture25.jpg'
theLHImages[25] = 'LHIPicture26.jpg'
theLHImages[26] = 'LHIPicture27.jpg'
theLHImages[27] = 'LHIPicture28.jpg'
theLHImages[28] = 'LHIPicture29.jpg'
theLHImages[29] = 'LHIPicture30.jpg'
theLHImages[30] = 'LHIPicture31.jpg'
theLHImages[31] = 'LHIPicture32.jpg'
theLHImages[32] = 'LHIPicture33.jpg'
theLHImages[33] = 'LHIPicture34.jpg'
theLHImages[34] = 'LHIPicture35.jpg'
theLHImages[35] = 'LHIPicture36.jpg'
theLHImages[36] = 'LHIPicture37.jpg'
theLHImages[37] = 'LHIPicture38.jpg'
theLHImages[38] = 'LHIPicture39.jpg'
theLHImages[39] = 'LHIPicture40.jpg'
theLHImages[40] = 'LHIPicture41.jpg'
theLHImages[41] = 'LHIPicture42.jpg'
theLHImages[42] = 'LHIPicture43.jpg'
theLHImages[43] = 'LHIPicture44.jpg'
var j = 0
var p = theLHImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++)
{
   preBuffer[i] = new Image()
   preBuffer[i].src = theLHImages[i]
}
var whichLHImage = Math.round(Math.random()*(p-1));
function showLHImage(){
document.write('<img src="LargeHILibrary/'+theLHImages[whichLHImage]+'" align="center";>');
}
