var containerID = "marketing";
var number = 1;
var timerID = setInterval("CountdownTimer()",5000);

function CountdownTimer() {
	if(number >= banners.length) {
		number = 0;
	}
	ReplaceContentInContainer(containerID,banners[number]);
	number++;
}

function ReplaceContentInContainer(id,content) {
	var container = document.getElementById(id);
	container.innerHTML = content;
}

var banners = new Array();

banners[0] = '<div class="frame banner banner_marketing_superfast"><span class="noprint">Super-fast Broadband. You\'ll notice the difference, especially at the busiest times.</span></div>';
banners[1] = '<div class="frame banner banner_marketing_nocontracts"><span class="noprint">No Contracts<sup>1</sup>. You don\'t have to be locked into any lengthy contracts - you can simply pay as you go and leave when you like! (If you don\t have a suitable broadband router, you can purchase one or Airnet can supply one for free on a 12 month contract term)</span></div>';
banners[2] = '<div class="frame banner banner_marketing_simplepricing"><span class="noprint">Low, simple pricing. Our plans are simple to understand, with no hidden costs or nasty surprises.</span></div>';
banners[3] = '<div class="frame banner banner_marketing_reliableservice"><span class="noprint">Reliable Service. Our state-of-the-art equipment is ultra-reliable, meaning you are connected 24/7.</span></div>';
banners[4] = '<div class="frame banner banner_marketing_payonly"><span class="noprint">Pay only for the calls you make. You don\'t pay for huge call bundles you\'ll never use - just pay for the calls that you make!</span></div>';
banners[5] = '<div class="frame banner banner_marketing_keepyour"><span class="noprint">Keep your existing phone numbers. The transition to Airnet will be seemless and painless - and you can keep your old numbers!</span></div>';
banners[6] = '<div class="frame banner banner_marketing_locallyowned"><span class="noprint">Locally owned and operated. No call centres on the other side of the world for us - we\'re right here in Hawke\'s Bay and can be with you to service your needs in no time!</span></div>';
