// Set up the image files to be used.
var LftTopImages = new Array() // do not change this
var LftTopDir = 'images/left_top_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 LftTopImages[x] index!


LftTopImages[0] = LftTopDir + 'quotation1.gif'
LftTopImages[1] = LftTopDir + 'quotation2.gif'




// ======================================
// do not change anything below this line
// ======================================

var LTLength = LftTopImages.length;

var LTpreBuffer = new Array()

for (i = 0; i < LTLength; i++){
   LTpreBuffer[i] = new Image()
   LTpreBuffer[i].src = LftTopImages[i]
}

var whichLTImage = Math.round(Math.random()*(LTLength-1));

function showLTImage(){
document.write('<img src="'+LftTopImages[whichLTImage]+'" alt="Joe M. Turner - Atlanta Magician - Corporate Magician - Professional Speaker" style="margin-bottom:42px;">');
}


