if (document.images) {
ads = new Array(4);
ads[0] = "../visitors/files/Banner/wesley_lecture.jpg";
ads[1] = "../visitors/files/Banner/fpac_tickets.jpg";
ads[2] = "../visitors/files/Banner/funk_heritage.jpg";
ads[3] = "../visitors/files/Banner/op_shop_vis.jpg";

}

newplace = new Array(4);
newplace[0] = "../Events/2009/wesley_lecture.html"
newplace[1] = "../fpac/"
newplace[2] = "../funkheritage/History/"
newplace[3] = "../Events/2009/reinhardt-college-opera-workshop-performance.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];
}
