 if (document.images) {
ads = new Array(5);
ads[0] = "http://www.taxconnex.com/Portals/45046/images/banner5.png";
ads[1] = "http://www.taxconnex.com/Portals/45046/images/banner1.png";
ads[2] = "http://www.taxconnex.com/Portals/45046/images/banner2.png";
ads[3] = "http://www.taxconnex.com/Portals/45046/images/banner3.png";
ads[4] = "http://www.taxconnex.com/Portals/45046/images/banner4.png";
}

newplace = new Array(5);
newplace[0] = "http://www.taxconnex.com/cpa-partner/"
newplace[1] = "http://www.taxconnex.com/the-taxconnex-difference/"
newplace[2] = "http://www.taxconnex.com/sales_tax_services/"
newplace[3] = "http://www.taxconnex.com/sales-tax-outsourcing-0"
newplace[4] = "http://www.taxconnex.com/services-0/"

var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 7000);
		counter++;
		if (counter >= 5)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}

