var containerID = "marketing";
var number = 0;
var timerID = setInterval("CountdownTimer()",7000);
var active = 1;
function CountdownTimer() {
	if(active == 1) {
		number++;
		if(number >= banners.length) {
			number = 0;
		}
		ReplaceContentInContainer(containerID,banners[number]);
	}
}

function ReplaceContentInContainer(id,content) {
	var container = document.getElementById(id);
	//container.innerHTML = content;
	$('#marketing').fadeOut(500, function() {
		container.innerHTML = content;
		//redrawTools();
		$('#marketing').css("display","none");
		$('#marketing').fadeIn(500);
	});
}

var banners = new Array();


banners[0] = '<a href="faster.html"><div class="frame banner banner_marketing_faster_broadband"><span class="noprint">Faster Broadband</span></div></a>';
banners[1] = '<a href="plans.html"><div class="frame banner banner_marketing_wantfibre"><span class="noprint">Want fibre? Sorted! Don\'t want fibre? Still sorted!</span></div></a>';
banners[2] = '<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[3] = '<a href="friends.html" ><div class="frame banner banner_friends_2"><span class="noprint">Life\'s better with friends!</span></div></a>';

banners[4] = '<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[5] = '<a href="friends.html" ><div class="frame banner banner_friends_1"><span class="noprint">Life\'s better with friends!</span></div></a>';

banners[6] = '<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[7] = '<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[8] = '<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[9] = '<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>';

banners[10] = '<a href="friends.html" ><div class="frame banner banner_friends_3"><span class="noprint">Life\'s better with friends!</span></div></a>';

