var text_keypoints = 0;
var messagenum_keypoints = new Array();
messagenum_keypoints[0] = "HEALTH &amp; WELFARE SUPPORT<br />TO FORMER PLAYERS IN NEED"
messagenum_keypoints[1] = "MAXIMISING COMMERCIAL<br />OPPORTUNITIES<br />FOR FORMER PLAYERS"
messagenum_keypoints[2] = "'ASTON VILLA OLD STARS'<br />CHARITY FOOTBALL TEAM"
messagenum_keypoints[3] = "ORGANISING SPORTING<br />&amp; SOCIAL EVENTS"
messagenum_keypoints[4] = "RECIPROCAL LINKS<br />WITH ASTON VILLA FC"
messagenum_keypoints[5] = "DEVELOPING<br />COMMERCIAL ENTERPRISES"
messagenum_keypoints[6] = "LINKS WITH<br />ASTON VILLA SUPPORTERS"
messagenum_keypoints[7] = "SUPPORTING CHARITABLE<br />&amp; COMMUNITY CAUSES"
function alternateText_keypoints() {
	if (messagenum_keypoints.length > 0) {
		document.getElementById("alternatingtext_keypoints").innerHTML=messagenum_keypoints[text_keypoints];
		text_keypoints++;
	}

	if (text_keypoints == 8) {
		text_keypoints = 0;
	}  // The number here represents the number of messages

	window.setTimeout("alternateText_keypoints()", 3000);
}
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_keypoints(); });