// JavaScript Document
// note additions or modifications must happen to all three elements
<!--
function randomImage() {
//init array and define images
imgArray = new Array(

	"images/ughomeimg.jpg",  // 1
	"images/advisors.jpg"    // 2


);



//generate random
index = Math.floor(Math.random() * imgArray.length);
//write out image
document.write("<img alt='UG image' src=" + imgArray[index] + " width='310' height='160' border='0'>");
}
//-->