var theImages = new Array()
theImages[0] = 'LVIPicture1.jpg'
theImages[1] = 'LVIPicture2.jpg'
theImages[2] = 'LVIPicture3.jpg'
theImages[3] = 'LVIPicture4.jpg'
theImages[4] = 'LVIPicture5.jpg'
theImages[5] = 'LVIPicture6.jpg'
theImages[6] = 'LVIPicture7.jpg'
theImages[7] = 'LVIPicture8.jpg'
theImages[8] = 'LVIPicture9.jpg'
theImages[9] = 'LVIPicture10.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 showLVImageR(){
document.write('<img src="Large VI Library/'+theImages[whichImage]+'" align="right";>');
}
function showLVImageL(){
document.write('<img src="Large VI Library/'+theImages[whichImage]+'" align="left";>');
}