if (document.images) {
ads = new Array(3);
 
ads[0] = "../Current-Students/banner/wesley_lecture_georgia_shaffer.jpg";  
ads[1] = "../Current-Students/banner/job_board.jpg";  
ads[2] = "../Current-Students/banner/op_shop.jpg"; 
}

newplace = new Array(3);


newplace[0] = "../Events/2009/wesley_lecture.html" 
newplace[1] = "../Events/2009/career_services/jobboard.html" 
newplace[2] = "../Events/2009/reinhardt-college-opera-workshop-performance.html"

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];
}
