//<!-- Begin

var theImages = new Array()

// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'i/rotatesmall/1.jpg'
theImages[1] = 'i/rotatesmall/2.jpg'
theImages[2] = 'i/rotatesmall/3.jpg'
theImages[3] = 'i/rotatesmall/4.jpg'
theImages[4] = 'i/rotatesmall/5.jpg'
theImages[5] = 'i/rotatesmall/6.jpg'
theImages[6] = 'i/rotatesmall/7.jpg'
theImages[7] = 'i/rotatesmall/8.jpg'
theImages[8] = 'i/rotatesmall/9.jpg'
theImages[9] = 'i/rotatesmall/10.jpg'
theImages[10] = 'i/rotatesmall/11.jpg'
theImages[11] = 'i/rotatesmall/12.jpg'
// do not edit anything below this line

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 showImageSmall(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->