if (document.images) {
ads = new Array(3);
ads[0] = "images/rotatingbanner_sb.jpg";
ads[1] = "images/rotatingbanner_sp.jpg";
ads[2] = "images/rotatingbanner_tr.jpg";
ads[3] = "images/rotatingbanner_te.jpg";
}

newplace = new Array(3);
newplace[0] = "theguitars_sanb.php"
newplace[1] = "theguitars_springfield.php"
newplace[2] = "theguitars_truxton.php"
newplace[3] = "theguitars_texola.php"

var timer = null
var	 counter = 8000

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

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

