// Type the number of images you are rotating.

NumberOfImagesToRotateTL = 51;


// Specify the first and last part of the image tag. 

FirstPartTL = '<img src="/images/bubbles/TL-';
LastPartTL = '.gif" width="250" height="245" border="0" />';

function printImageTL() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotateTL);
document.write(FirstPartTL + r + LastPartTL);
}
