if (document.images) {
ads = new Array(4);
ads[0] = "../Home/banner/the_way_college_should_be.jpg";
ads[1] = "../Home/banner/exciting.jpg";
ads[2] = "../Home/banner/friendly1.jpg";
ads[3] = "../Home/banner/memorable.jpg";

}

newplace = new Array(4);
newplace[0] = "../index.html"
newplace[1] = "../index.html"
newplace[2] = "../index.html"
newplace[3] = "../index.html"
newplace[4] = "../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];
}
