// This is the Database of Upcoming Events
// Please Edit with Care.
//
// 8 Fields (surrounded by brackets[]) are used for EACH event:
// 	["Recurring", "Month", "Day", "Year", "StartTime", "EndTime", "Name", "Description"]
// 	Each event field must be be surrounded by quotation marks followed by a comma ("",) EXCEPT the "Description" field.
//	The "Description" field is surrounded by quotation marks only ("").
//
// Each event has a comma after the closing bracket IF another event is below it on the next line down.
//	Note: The last event in this file should NOT have a comma after the closing bracket
//
// The Recurring field uses:
//	"D" = Daily; "W" = Weekly; "M" = Monthly; "Y" = Yearly; "F" = Floating Holiday
//
// One Time only events should leave the Recurring field blank
//	(ex. "")
//
// Daily events do NOT require that anything be in the Month Day and Year fields
//	Everything in the Month Day and Year fields will be ignored
//
// Weekly events should have the day of the week field set to 1 - 7
//	1=Sunday, 2=Monday, 3=Tuesday, 4=Wednesday, 5=Thurday, 6=Friday, 7=Saturday
//
// "F"loating events uses:
//	the Month field for the Month.
//	the Day field as the Cardinal Occurrence
//		1=1st, 2=2nd, 3=3rd, 4=4th, 5=5th, 6=6th occurrence of the day listed next
//	the Year field as the Day of the week the event/holiday falls on
//		1=Sunday, 2=Monday, 3=Tuesday, 4=Wednesday, 5=Thurday, 6=Friday, 7=Saturday
//	example: "F",	"1",	"3",	"2", = Floating holiday in January on the 3rd Monday of that month.
//
//	Note: Easter has it's own special formula so Please don't change anything related to Easter below
//
// "Y"early events are specific dates that never change - the Year field is ignored
//	example - Christmas is: "12","25","",
events = new Array(
	["Y",	"12",	"16",	"2009",	"",	"",	"Day of Reconciliation", ""],
	["Y",	"12",	"24",	"2009",	"",	"",	"Christmas Eve", "Ho ho ho!"],
	["Y",	"12",	"25",	"2009",	"",	"",	"Christmas Day", "Ho ho ho!"],
	["Y",	"01",	"01",	"2010",	"",	"",	"New Year's Day", "Happy happy!"],
	["",	"02",	"01",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"02",	"01",	"2010",	"",	"",	"Mining Indaba 2010", ""],
	["",	"02",	"02",	"2010",	"",	"",	"Mining Indaba 2010", ""],
	["",	"02",	"03",	"2010",	"",	"",	"Mining Indaba 2010", ""],
	["",	"02",	"04",	"2010",	"",	"",	"Mining Indaba 2010", ""],
	["",	"02",	"08",	"2010",	"",	"",	"11th Southern African Energy Week", ""],
	["",	"02",	"09",	"2010",	"",	"",	"11th Southern African Energy Week", ""],
	["",	"02",	"09",	"2010",	"10:00",	"",	"Collieries Meeting", ""],
	["",	"02",	"10",	"2010",	"",	"",	"11th Southern African Energy Week", ""],
	["",	"02",	"10",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"02",	"11",	"2010",	"",	"",	"President's State of the Nation Address", ""],
	["",	"02",	"14",	"2010",	"",	"",	"Valentine's Day", ""],
	["",	"02",	"15",	"2010",	"",	"",	"Debate on President’s State-of-the-Nation Address", ""],
	["",	"02",	"16",	"2010",	"",	"",	"Reply by the President on the State-of-the-Nation Address", ""],
	["",	"02",	"17",	"2010",	"",	"",	"Budget Speech (NA) & Introduction of Division of Revenue Bill", ""],
	["",	"03",	"01",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"03",	"02",	"2010",	"",	"",	"National Assembly Debate on Fiscal Framework", ""],
	["",	"03",	"04",	"2010",	"",	"",	"National Assembly Plenary on Division of Revenue Bill", ""],
	["",	"03",	"09",	"2010",	"10:00",	"",	"Gold Producer's Meeting", ""],
	["",	"03",	"10",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["Y",	"03",	"21",	"2010",	"",	"",	"Human Rights Day", ""],
	["F",	"03",	"22",	"2010",	"",	"",	"Public Holiday", ""],
	["",	"03",	"29",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["F",	"04",	"02",	"2010",	"",	"",	"Good Friday", ""],
	["F",	"04",	"05",	"2010",	"",	"",	"Family Day", ""],
	["",	"04",	"13",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"14",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"14",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"04",	"15",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"16",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"17",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"18",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"19",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"20",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"21",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"22",	"2010",	"",	"",	"Debates on budget votes", ""],
	["",	"04",	"23",	"2010",	"",	"",	"Debates on budget votes", ""],
	["Y",	"04",	"27",	"2010",	"",	"",	"Freedom Day", ""],
	["Y",	"05",	"01",	"2010",	"",	"",	"Workers' Day", ""],
	["",	"05",	"03",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"05",	"31",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"05",	"11",	"2010",	"10:00",	"",	"Collieries Meeting", ""],
	["",	"05",	"12",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"05",	"27",	"2010",	"",	"",	"Decision on budget vote by National Assembly", ""],
	["",	"06",	"04",	"2010",	"",	"",	"Decision on budget vote by National Council of Provinces", ""],
	["",	"06",	"08",	"2010",	"10:00",	"",	"Gold Producer's Meeting", ""],
	["",	"06",	"09",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"06",	"11",	"2010",	"16:00",	"",	"Start of the 2010 FIFA World Cup South Africa", "South Africa vs Mexico"],
	["Y",	"06",	"16",	"2010",	"",	"",	"Youth Day", ""],
	["",	"06",	"16",	"2010",	"20:30",	"",	"2010 FIFA World Cup South Africa", "South Africa vs Uruguay"],
	["",	"06",	"22",	"2010",	"16:00",	"",	"2010 FIFA World Cup South Africa", "South Africa vs France"],
	["",	"07",	"05",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"07",	"14",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"08",	"02",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["Y",	"08",	"09",	"2010",	"",	"",	"National Women's Day", ""],
	["",	"08",	"10",	"2010",	"10:00",	"",	"Collieries Meeting", ""],
	["",	"08",	"11",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"09",	"06",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"09",	"14",	"2010",	"10:00",	"",	"Gold Producer's Meeting", ""],
	["",	"09",	"15",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["Y",	"09",	"24",	"2010",	"",	"",	"Heritage Day", ""],
	["",	"10",	"04",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"10",	"13",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"11",	"01",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"11",	"09",	"2010",	"10:00",	"",	"Collieries Meeting", ""],
	["",	"11",	"10",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["",	"12",	"06",	"2010",	"09:00",	"",	"ACC Meeting", ""],
	["",	"12",	"14",	"2010",	"10:00",	"",	"Gold Producer's Meeting", ""],
	["",	"12",	"15",	"2010",	"10:00",	"",	"Executive Council Meeting", ""],
	["Y",	"12",	"26",	"2010",	"",	"",	"Day of Goodwill", ""],
	["Y",	"12",	"27",	"2010",	"",	"",	"Public Holiday", ""]
	// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);