var text_sponsors = 0;
var messagenum_sponsors = new Array();
messagenum_sponsors[0] = "<p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:10px;'><strong>MAIN PARTNER</strong></p><p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:22px;'>Aston Villa Football Club</p><p style='margin-top:15px; margin-bottom:0px;' align='center'><a href='http://www.avfc.co.uk' target='_blank'><img src='logos/avfc.gif' alt='' width='78' height='110' border='0' /></a></p>"
messagenum_sponsors[1] = "<p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:10px;'><strong>OFFICIAL SPONSOR OF ASTON VILLA FPA</strong></p><p style='margin-top:5px; margin-bottom:0px;'><a href='http://www.wavenetuk.com' target='_blank'><img src='logos/wavenet.gif' alt='' width='157' height='50' border='0' /></a></p><p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:12px;'>In today's challenging economic environment, it's vital that your business is as efficient as it can be. Most businesses, particularly medium sized enterprises, are paying more for their telecoms and related services than they need to. We can cut your costs while giving you a superior, more responsive service. The result: a better return on your investment.</p>"
messagenum_sponsors[2] = "<p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:10px;'><strong>KIT SUPPLIER</strong></p><p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:26px;'>Nike</p><p style='margin-top:10px; margin-bottom:0px; margin-left:10px; margin-right:10px; font-size:12px;'>Nike operates in more than 160 countries around the globe. Through our suppliers, shippers, retailers and other service providers, we directly or indirectly employ nearly one million people.</p><p style='margin-top:5px; margin-bottom:0px;' align='center'><a href='http://www.nike.com' target='_blank'><img src='logos/nike.gif' alt='' width='200' height='70' border='0' /></a></p>"
function alternateText_sponsors() {
	if (messagenum_sponsors.length > 0) {
		document.getElementById("alternatingtext_sponsors").innerHTML=messagenum_sponsors[text_sponsors];
		text_sponsors++;
	}

	if (text_sponsors == 3) {
		text_sponsors = 0;
	}  // The number here represents the number of messages

	window.setTimeout("alternateText_sponsors()", 6000);
}
function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}
addLoadEvent(function() { alternateText_sponsors(); });
