// JavaScript Document
if (document.images) {
ads = new Array(3);
ads[0] = "banners/news-events/banner2.gif";
ads[1] = "banners/news-events/banner2.gif";
ads[2] = "banners/news-events/banner3.gif";
}

newplace = new Array(3);
newplace[0] = "mailto:info@tfba.co.za"
newplace[1] = "mailto:info@tfba.co.za"
newplace[2] = "mailto:info@tfba.co.za"

var timer = null
var	 counter = 0

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

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