if (document.images) {
ads = new Array(2);
ads[0] = "assets/images/banners/index_banner_rcs_rcyc_split.jpg";
ads[1] = "http://www.rivercitystar.com/assets/images/banners/cws_banner.jpg";

}

newplace = new Array(2);
newplace[0] = "http://www.rivercitystar.com/index.html"
newplace[1] = "http://www.rivercitystar.com/baseball_about_beer_tents.html"


var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 2)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
