

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '_aa_RI/General/1.jpg'
theImages[1] = '_aa_RI/General/2.jpg'
theImages[2] = '_aa_RI/General/3.jpg'
theImages[3] = '_aa_RI/General/4.jpg'
theImages[4] = '_aa_RI/General/5.jpg'
theImages[5] = '_aa_RI/General/6.jpg'
theImages[6] = '_aa_RI/General/7.jpg'
theImages[7] = '_aa_RI/General/8.jpg'
theImages[8] = '_aa_RI/General/9.jpg'
theImages[9] = '_aa_RI/General/10.jpg'
theImages[10] = '_aa_RI/General/11.jpg'
theImages[11] = '_aa_RI/General/12.jpg'
theImages[12] = '_aa_RI/General/13.jpg'
theImages[13] = '_aa_RI/General/14.jpg'
theImages[14] = '_aa_RI/General/15.jpg'
theImages[15] = '_aa_RI/General/16.jpg'
theImages[16] = '_aa_RI/General/17.jpg'
theImages[17] = '_aa_RI/General/18.jpg'
theImages[18] = '_aa_RI/General/19.jpg'
theImages[19] = '_aa_RI/General/20.jpg'
theImages[20] = '_aa_RI/General/21.jpg'
theImages[21] = '_aa_RI/General/22.jpg'
theImages[22] = '_aa_RI/General/23.jpg'
theImages[23] = '_aa_RI/General/24.jpg'
theImages[24] = '_aa_RI/General/25.jpg'
theImages[25] = '_aa_RI/General/26.jpg'
theImages[26] = '_aa_RI/General/27.jpg'
theImages[27] = '_aa_RI/General/28.jpg'
theImages[28] = '_aa_RI/General/29.jpg'
theImages[29] = '_aa_RI/General/30.jpg'
theImages[30] = '_aa_RI/General/31.jpg'
theImages[31] = '_aa_RI/General/32.jpg'
theImages[32] = '_aa_RI/General/33.jpg'
theImages[33] = '_aa_RI/General/34.jpg'
theImages[34] = '_aa_RI/General/35.jpg'
theImages[35] = '_aa_RI/General/36.jpg'
theImages[36] = '_aa_RI/General/37.jpg'
theImages[37] = '_aa_RI/General/38.jpg'
theImages[38] = '_aa_RI/General/39.jpg'
theImages[39] = '_aa_RI/General/40.jpg'
theImages[40] = '_aa_RI/General/41.jpg'
theImages[41] = '_aa_RI/General/42.jpg'
theImages[42] = '_aa_RI/General/43.jpg'
theImages[43] = '_aa_RI/General/44.jpg'
theImages[44] = '_aa_RI/General/45.jpg'
theImages[45] = '_aa_RI/General/46.jpg'
theImages[46] = '_aa_RI/General/47.jpg'
theImages[47] = '_aa_RI/General/48.jpg'
theImages[48] = '_aa_RI/General/49.jpg'
theImages[49] = '_aa_RI/General/50.jpg'
theImages[50] = '_aa_RI/General/51.jpg'
theImages[51] = '_aa_RI/General/52.jpg'
theImages[52] = '_aa_RI/General/53.jpg'
theImages[53] = '_aa_RI/General/54.jpg'
theImages[54] = '_aa_RI/General/55.jpg'
theImages[55] = '_aa_RI/General/56.jpg'
theImages[56] = '_aa_RI/General/57.jpg'
theImages[57] = '_aa_RI/General/58.jpg'
theImages[58] = '_aa_RI/General/59.jpg'
theImages[59] = '_aa_RI/General/60.jpg'
theImages[60] = '_aa_RI/General/61.jpg'
theImages[61] = '_aa_RI/General/62.jpg'
theImages[62] = '_aa_RI/General/63.jpg'
theImages[63] = '_aa_RI/General/64.jpg'
theImages[64] = '_aa_RI/General/65.jpg'
theImages[65] = '_aa_RI/General/66.jpg'
theImages[66] = '_aa_RI/General/67.jpg'
theImages[67] = '_aa_RI/General/68.jpg'
theImages[68] = '_aa_RI/General/69.jpg'
theImages[69] = '_aa_RI/General/70.jpg'
theImages[70] = '_aa_RI/General/71.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 showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}


