<!-- Begin
var theImages = new Array() 

theImages[0] = 'rotating-photos/image1.jpg'
theImages[1] = 'rotating-photos/image3.jpg'
theImages[2] = 'rotating-photos/image3.jpg'
theImages[3] = 'rotating-photos/image4.jpg'
theImages[4] = 'rotating-photos/image5.jpg'
theImages[5] = 'rotating-photos/image6.jpg'
theImages[6] = 'rotating-photos/image7.jpg'
theImages[7] = 'rotating-photos/image8.jpg'
theImages[8] = 'rotating-photos/image9.jpg'
theImages[9] = 'rotating-photos/image10.jpg'
theImages[10] = 'rotating-photos/image11.jpg'
theImages[11] = 'rotating-photos/image12.jpg'
theImages[12] = 'rotating-photos/image13.jpg'
theImages[13] = 'rotating-photos/image14.jpg'
theImages[14] = 'rotating-photos/image15.jpg'
theImages[15] = 'rotating-photos/image16.jpg'
theImages[16] = 'rotating-photos/image17.jpg'
theImages[17] = 'rotating-photos/image18.jpg'
theImages[18] = 'rotating-photos/image19.jpg'
theImages[19] = 'rotating-photos/image20.jpg'
theImages[20] = 'rotating-photos/image21.jpg'
theImages[21] = 'rotating-photos/image22.jpg'
theImages[22] = 'rotating-photos/image23.jpg'
theImages[23] = 'rotating-photos/image24.jpg'
theImages[24] = 'rotating-photos/image25.jpg'
theImages[25] = 'rotating-photos/image26.jpg'
theImages[26] = 'rotating-photos/image27.jpg'
theImages[27] = 'rotating-photos/image28.jpg'
theImages[28] = 'rotating-photos/image29.jpg'
theImages[29] = 'rotating-photos/image30.jpg'
theImages[30] = 'rotating-photos/image31.jpg'
theImages[31] = 'rotating-photos/image32.jpg'
theImages[32] = 'rotating-photos/image33.jpg'
theImages[33] = 'rotating-photos/image34.jpg'
theImages[34] = 'rotating-photos/image35.jpg'
theImages[35] = 'rotating-photos/image36.jpg'
theImages[36] = 'rotating-photos/image37.jpg'
theImages[37] = 'rotating-photos/image38.jpg'
theImages[38] = 'rotating-photos/image39.jpg'
theImages[39] = 'rotating-photos/image40.jpg'
theImages[40] = 'rotating-photos/image41.jpg'
theImages[41] = 'rotating-photos/image42.jpg'
theImages[42] = 'rotating-photos/image43.jpg'
theImages[43] = 'rotating-photos/image44.jpg'
theImages[44] = 'rotating-photos/image45.jpg'
theImages[45] = 'rotating-photos/image46.jpg'
theImages[46] = 'rotating-photos/image47.jpg'
theImages[47] = 'rotating-photos/image48.jpg'
theImages[48] = 'rotating-photos/image49.jpg'
theImages[49] = 'rotating-photos/image50.jpg'

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 showImage(){
document.write('<img id="rotating-photos" src="'+theImages[whichImage]+'">');
}

//  End -->

