function randomImage() { var theImages = new Array()
// hard coded for homepage images
	theImages[0] = '/loeb_library/images/news01.jpg';
	theImages[1] = '/loeb_library/images/news02.jpg';
	theImages[2] = '/loeb_library/images/news03.jpg';
	theImages[3] = '/loeb_library/images/news04.jpg';
	theImages[4] = '/loeb_library/images/news05.jpg';
	theImages[5] = '/loeb_library/images/news06.jpg';
	theImages[6] = '/loeb_library/images/news07.jpg';
	theImages[7] = '/loeb_library/images/news08.jpg';
	theImages[8] = '/loeb_library/images/news09.jpg';
	theImages[9] = '/loeb_library/images/news10.jpg';
	theImages[10] = '/loeb_library/images/news11.jpg';
	theImages[11] = '/loeb_library/images/news12.jpg';
	theImages[12] = '/loeb_library/images/news13.jpg';
	theImages[13] = '/loeb_library/images/news14.jpg';
	theImages[14] = '/loeb_library/images/news15.jpg';
	theImages[15] = '/loeb_library/images/news16.jpg';
	theImages[16] = '/loeb_library/images/news17.jpg';
	theImages[17] = '/loeb_library/images/news18.jpg';
	theImages[18] = '/loeb_library/images/news19.jpg';
	theImages[19] = '/loeb_library/images/news20.jpg';
	theImages[20] = '/loeb_library/images/news21.jpg';
	theImages[21] = '/loeb_library/images/news22.jpg';
	theImages[22] = '/loeb_library/images/news23.jpg';
	theImages[23] = '/loeb_library/images/news24.jpg';
	theImages[24] = '/loeb_library/images/news25.jpg';
	theImages[25] = '/loeb_library/images/news26.jpg';
	theImages[26] = '/loeb_library/images/news27.jpg';
	theImages[27] = '/loeb_library/images/news28.jpg';
	theImages[28] = '/loeb_library/images/news29.jpg';
	theImages[29] = '/loeb_library/images/news30.jpg';
	theImages[30] = '/loeb_library/images/news31.jpg';
	theImages[31] = '/loeb_library/images/news32.jpg';
	theImages[32] = '/loeb_library/images/news33.jpg';
	theImages[33] = '/loeb_library/images/news34.jpg';
	theImages[34] = '/loeb_library/images/news35.jpg';
	theImages[35] = '/loeb_library/images/news36.jpg';
	theImages[36] = '/loeb_library/images/news37.jpg';
	theImages[37] = '/loeb_library/images/news38.jpg';
	theImages[38] = '/loeb_library/images/news39.jpg';
	theImages[39] = '/loeb_library/images/news40.jpg';
	theImages[40] = '/loeb_library/images/news41.jpg';
	theImages[41] = '/loeb_library/images/news42.jpg';
	theImages[42] = '/loeb_library/images/news43.jpg';
	theImages[43] = '/loeb_library/images/news44.jpg';
	theImages[44] = '/loeb_library/images/news45.jpg';
	theImages[45] = '/loeb_library/images/news46.jpg';
	theImages[46] = '/loeb_library/images/news47.jpg';
	theImages[47] = '/loeb_library/images/news48.jpg';
	theImages[48] = '/loeb_library/images/news49.jpg';
	theImages[49] = '/loeb_library/images/news50.jpg';
	theImages[50] = '/loeb_library/images/news51.jpg';
	theImages[51] = '/loeb_library/images/news52.jpg';
	theImages[52] = '/loeb_library/images/news53.jpg';
	theImages[53] = '/loeb_library/images/news54.jpg';
	theImages[54] = '/loeb_library/images/news55.jpg';
	theImages[55] = '/loeb_library/images/news56.jpg';
	theImages[56] = '/loeb_library/images/news57.jpg';
	theImages[57] = '/loeb_library/images/news58.jpg';
	theImages[58] = '/loeb_library/images/news59.jpg';
	theImages[59] = '/loeb_library/images/news60.jpg';
	theImages[60] = '/loeb_library/images/news61.jpg';
	theImages[61] = '/loeb_library/images/news62.jpg';
	theImages[62] = '/loeb_library/images/news63.jpg';
	theImages[63] = '/loeb_library/images/news64.jpg';
	theImages[64] = '/loeb_library/images/news65.jpg';
	theImages[65] = '/loeb_library/images/news66.jpg';
	theImages[66] = '/loeb_library/images/news67.jpg';
	theImages[67] = '/loeb_library/images/news68.jpg';
	theImages[68] = '/loeb_library/images/news69.jpg';
	theImages[69] = '/loeb_library/images/news70.jpg';
	theImages[70] = '/loeb_library/images/news71.jpg';
	theImages[71] = '/loeb_library/images/news72.jpg';
	theImages[72] = '/loeb_library/images/news73.jpg';
	theImages[73] = '/loeb_library/images/news74.jpg';
	theImages[74] = '/loeb_library/images/news75.jpg';
	theImages[75] = '/loeb_library/images/news76.jpg';
	theImages[76] = '/loeb_library/images/news77.jpg';
	theImages[77] = '/loeb_library/images/news78.jpg';
	theImages[78] = '/loeb_library/images/news79.jpg';
	theImages[79] = '/loeb_library/images/news80.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));
//alert (whichImage);
document.write('<img src="'+theImages[whichImage]+'" width="235" heigh="45">');


}
