if (document.images) {
ads = new Array(3);
 
ads[0] = "../facultystaff/banner/green.jpg";
ads[1] = "../facultystaff/banner/exercise.jpg";
ads[2] = "../facultystaff/banner/celebrate_mascot.jpg";
}

newplace = new Array(3);
newplace[0] = "http://www.reinhardt.edu/Current-Students/RC_Green/index.html"
newplace[1] = "http://www.reinhardt.edu/Current-Students/Student_Activities/Fitness_Rec/group.html"
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];
}
