if (document.images) {
ads = new Array(3);
ads[0] = "../alumni/banner/wesley_lecture_georgia_shaffer.jpg";
ads[1] = "../alumni/banner/1998_Soccer_Team_2.jpg";
ads[2] = "../alumni/banner/alumni_glass.jpg";



}

newplace = new Array(3);
newplace[0] = "http://www.reinhardt.edu/Events/2009/wesley_lecture.html"
newplace[1] = "http://www.Reinhardt.edu"
newplace[2] = "http://www.Reinhardt.edu"



var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 3)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
