// JavaScript Document

function loadRotatingImage()
{
	
	var txtList = new Array()

txtList[txtList.length]="<img src='/homepage-images/1.jpg' width='596' height='290' border='0' alt='Kris Berglund, University Distinguished Professor of Foresty and Chemical Engineering and Materials Science. Learn more &#187;'/>";


j=parseInt(Math.random()*txtList.length);
j=(isNaN(j))?0:j;

e = document.getElementById('main_image');
e.innerHTML="<div class='wrapper'>" + unescape(txtList[j]) + "</div>";


// document.write(unescape(txtList[j]));	
}