// user list for mac 50
var commentatorArray = new Array();
var commentatorIDArray = new Array();

commentatorArray[0] = "Lloyd Axworthy";
commentatorIDArray[0] = 1613;

commentatorArray[1] = "Maude Barlow";
commentatorIDArray[1] = 686;

commentatorArray[2] = "Hugh Segal";
commentatorIDArray[2] = 1697;

commentatorArray[3] =  "Sujit Choudhry";
commentatorIDArray[3] = 1573;

commentatorArray[4] =  "Tarek Fatah";
commentatorIDArray[4] = 1574;

commentatorArray[5] =  "Tom Flanagan";
commentatorIDArray[5] = 1575;

commentatorArray[6] =  "Preston Manning";
commentatorIDArray[6] = 1708;

commentatorArray[7] =  "John Manley";
commentatorIDArray[7] = 1620;

commentatorArray[8] =  "John Moore";
commentatorIDArray[8] = 1578;

commentatorArray[9] =  "Steve Paikin";
commentatorIDArray[9] = 1579;

commentatorArray[10] =  "Tim Powers";
commentatorIDArray[10] = 1580;

commentatorArray[11] =  "Allan Rock";
commentatorIDArray[11] = 1581;

commentatorArray[12] =  "Rick Anderson";
commentatorIDArray[12] = 1582;

commentatorArray[13] =  "Joel-Denis Bellavance";
commentatorIDArray[13] = 1583;

commentatorArray[14] =  "Glen Clark";
commentatorIDArray[14] = 1585;

commentatorArray[15] =  "John Duffy";
commentatorIDArray[15] = 1586;

commentatorArray[16] =  "Shirley Heafey";
commentatorIDArray[16] = 1804;

commentatorArray[17] =  "Mercedes Stephenson";
commentatorIDArray[17] = 1655;

commentatorArray[18] = "Dan Arnold";
commentatorIDArray[18] = 1572;

commentatorArray[19]  =  "Steve Maich";
commentatorIDArray[19] = 1591;

commentatorArray[20]  =  "Antonia Maioni";
commentatorIDArray[20] = 1592;

commentatorArray[21]  =  "Glen Murray";
commentatorIDArray[21] = 1593;

commentatorArray[22] =  "Guy Giorno";
commentatorIDArray[22] = 1576;

commentatorArray[23]  =  "John Reynolds";
commentatorIDArray[23] = 1596;

commentatorArray[24]  =  "Stephen Taylor";
commentatorIDArray[24] = 1597;

commentatorArray[25]  =  "John Williamson";
commentatorIDArray[25] = 1598;

commentatorArray[26]  =  "John Geddes";
commentatorIDArray[26] = 1499;

commentatorArray[27]  =  "Tasha Kheiriddin ";
commentatorIDArray[27] = 688;

commentatorArray[28]  =  "Paul Wells";
commentatorIDArray[28] = 1503;

commentatorArray[29]  =  "Scott Feschuk";
commentatorIDArray[29] = 955;

commentatorArray[30]  =  "Luiza Ch. Savage";
commentatorIDArray[30] = 1241;

commentatorArray[31]  =  "Andrew Potter";
commentatorIDArray[31] = 1269;

commentatorArray[32] = "Karl Moore";
commentatorIDArray[32] = 2405;

commentatorArray[33] = "Megan Harris";
commentatorIDArray[33] = 1614;

commentatorArray[34] = "Greg Lyle";
commentatorIDArray[34] = 1604;

commentatorArray[35] = "Barry Cooper";
commentatorIDArray[35] = 1605;

commentatorArray[36] = "Scott Taylor";
commentatorIDArray[36] = 1709;

commentatorArray[37] = "Christy Clark";
commentatorIDArray[37] = 1607;

commentatorArray[38] = "Lewis MacKenzie";
commentatorIDArray[38] = 1608;

commentatorArray[39] = "Akaash Maharaj";
commentatorIDArray[39] = 1609;

commentatorArray[40] = "Sean Maloney";
commentatorIDArray[40] = 1610;

commentatorArray[41] = "Jennifer Welsh";
commentatorIDArray[41] = 1615;

commentatorArray[42] = "Larry Campbell";
commentatorIDArray[42] = 1616;

commentatorArray[43] = "Peter Harder";
commentatorIDArray[43] = 1827;

commentatorArray[44] = "Danielle Smith";
commentatorIDArray[44] = 1622;

commentatorArray[45] = "Tony Keller";
commentatorIDArray[45] = 1324;

commentatorArray[46] =  "Robert Silver";
commentatorIDArray[46] = 1908;

commentatorArray[47] = "Jack M. Mintz";
commentatorIDArray[47] = 1681;

commentatorArray[48] =  "Gerry Nicholls";
commentatorIDArray[48] = 1828;

commentatorArray[49]  =  "Nik Nanos";
commentatorIDArray[49] = 1594;

commentatorArray[49]  =  "Nik Nanos";
commentatorIDArray[49] = 1594;

// education

commentatorArray[51]  =  "Erin Millar";
commentatorIDArray[51] = 1728;

function getCommentatorID(id) {
	var theID = commentatorIDArray[id];
	if (theID == 0) {
		theID = "blank";
	}
	return theID;
}

function getCommentatorName(id) {
	var theID = commentatorIDArray[id];
	var theName = commentatorArray[id];
	if (theID == 0) {
		theName = "Coming Soon";
	}
	return theName;
}
