if (document.images) {
ads = new Array(1);
 
ads[0] = "../current-students/banner/spring_formal.jpg";
}

newplace = new Array(1);
newplace[0] = "http://www.reinhardt.edu/Current-Students/Student_Activities/springformal.html"

var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 1)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
