// Set up the image files to be used.
var LftBotImages = new Array() // do not change this
var LftBotDir = 'images/left_bottom_images/'  // change this only if image directory changes

// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the LftBotImages[x] index!

LftBotImages[0] = LftBotDir + 'image0.jpg'
LftBotImages[1] = LftBotDir + 'image1.jpg'
LftBotImages[2] = LftBotDir + 'image2.jpg'
LftBotImages[3] = LftBotDir + 'image3.jpg'
LftBotImages[4] = LftBotDir + 'image4.jpg'
LftBotImages[5] = LftBotDir + 'image5.jpg'
LftBotImages[6] = LftBotDir + 'image6.jpg'
LftBotImages[7] = LftBotDir + 'image7.jpg'
LftBotImages[8] = LftBotDir + 'image8.jpg'
LftBotImages[9] = LftBotDir + 'image9.jpg'
LftBotImages[10] = LftBotDir + 'image10.jpg'





// ======================================
// do not change anything below this line
// ======================================

var LBLength = LftBotImages.length;

var LBpreBuffer = new Array()
for (i = 0; i < LBLength; i++){
   LBpreBuffer[i] = new Image()
   LBpreBuffer[i].src = LftBotImages[i]
}

var whichLBImage = Math.round(Math.random()*(LBLength-1));

function showLBImage(){
document.write('<img src="'+LftBotImages[whichLBImage]+'" alt="Joe M. Turner - Atlanta Magician - Corporate Magician - Professional Speaker" style="border: 1px solid rgb(255, 255, 255);">');
}


