// Declare the array that will serve the dynamic text
arrAboutText = new Array(15);

function DMS_setArray() {
	arrAboutText[0] = '<b>Jaine Crompton</b><br>Client Support Manager';
	arrAboutText[1] = '<b>Ann Calvert</b><br>Director - Operational Standards';
	arrAboutText[2] = '<b>Kelly Hawker</b><br>Client Support Manager';
	arrAboutText[3] = '<b>Sarah Curry</b><br>Client Manager';
	arrAboutText[4] = '<b>Elaine Jones</b><br>Manager - Customer Contact Centre (Voice)';
	arrAboutText[5] = '<b>Kim Lees</b><br>Managing Director';
	arrAboutText[6] = '<b>Georgina Lyons</b><br>Client Support Manager';
	arrAboutText[7] = '<b>Samantha Cass</b><br>Manager - Strategic Planning';
	arrAboutText[8] = '<b>Emma Roberts</b><br>Company Accountant';
	arrAboutText[9] = '<b>Sarah Richards</b><br>Manager - Operational Standards';
	arrAboutText[10] = '<b>Louise Evans</b><br>Director - Strategic Planning';
	arrAboutText[11] = '<b>John Fogg</b><br>Genius SPECTRE Mastermind';
	//arrAboutText[11] = '&nbsp;';
	arrAboutText[12] = '<b>David Dasher</b><br>Database Development Director';
	arrAboutText[13] = '<b>Giles Drake</b><br>Web Developer';
	arrAboutText[14] = '<b>Damon Roberts</b><br>Internet Systems Manager';
	arrAboutText[15] = '<b>Paul Galvin</b><br>Client Reporting Manager';
	DMS_setDefaultText();	// Set the default text
}

function DMS_swapText(index) {
document.getElementById("AboutText").innerHTML = arrAboutText[index];
}

function DMS_setDefaultText() {
	DMS_swapText(5);
}

