if (document.images) {
ads = new Array(4);
ads[0] = "../fpac/banner/rotating/main_banner_con.jpg";
ads[1] = "../fpac/banner/rotating/main_banner_ent.jpg";
ads[2] = "../fpac/banner/rotating/main_banner_sch.jpg";
ads[3] = "../fpac/banner/rotating/main_banner_ga.jpg";
}

newplace = new Array(4);
newplace[0] = "http://www.reinhardt.edu/fpac/Enjoy/Concert_Artist/index.html"
newplace[1] = "http://www.reinhardt.edu/fpac/Enjoy/Entertainment/index.html"
newplace[2] = "http://www.reinhardt.edu/fpac/Enjoy/Music_Department/index.html"
newplace[3] = "http://www.reinhardt.edu/fpac/Enjoy/Georgia_Artist/index.html"


var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 4)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}