<!--
function randomMastheadImg (elem) {
// Script to set up the random masthead background image for this page
	// Populate the images array
	var images = new Array();

	images[0] = ["west_hall.jpg", "Photo: Students at West Hall"];
	images[1] = ["first_band.jpg", "Photo: UC Davis' first orchestra"];
	images[2] = ["signal_corps.jpg", "Photo: The Army Signal Corps band at UC Davis"];
	images[3] = ["muralist.jpg", "Photo: A muralist at work"];
	images[4] = ["unitrans.jpg", "Photo: Unitrans busses"];
	images[5] = ["aggie_pack.jpg", "Photo: The UC Davis Aggie Pack in full spirit"];
	images[6] = ["schaal.jpg", "Photo: Swimmer at Schaal Aquatic Center"];

	var levelMod = "http://centennial.ucdavis.edu/images/photos/masthead/";

	var rndIndex = Math.floor( Math.random() * images.length );

	// Build the <img> tag
	var rndImg = '<img src="' + levelMod + images[rndIndex][0] + '" alt="' + images[rndIndex][1] + '" border="0" />';
	var image_target = document.getElementById(elem);
	image_target.innerHTML = rndImg;
}
// -->
