<!-- Begin
// Set up the image files to be used.
var theHomeImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theHomeImages[0] = '<img border="0" src="images/random/RLDF0205.gif" alt="Carlton Sales commercial and industrial equipment"></a>'
theHomeImages[1] = '<img border="0" src="images/random/glassfrostgjpg.jpg" alt="Carlton Sales commercial and industrial equipment"></a>'

// do not edit anything below this line

var j = 0
var p = theHomeImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theHomeImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showHomeImage(){
document.write(theHomeImages[whichImage]);
}
//  End -->
