// 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
//		7=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thurday, 5=Friday, 6=Saturday
//	example: "F",	"1",	"3",	"1", = 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(
["W",	"10",	"3",	"2",	"7:00 PM",	"8:00 PM",	"Wasp's U12 & U16 Training",			"Coaches Host Training Session For The U12 & U16 Players"],
["W",	"10",	"3",	"2",	"8:00 PM",	"9:00 PM",	"Wasp's U18 Training",				"Coaches Host Training Session For The U18 Players (Unless A Match Has Been Scheduled (will be noted at bottom))"],
["W",	"10",	"3",	"2",	"9:00 PM",	"10:00 PM",	"Wasp's ADULT Training",			"Coaches Host Training Session For The ADULT Players (Unless A Match Has Been Scheduled (will be noted at bottom))"],
["W",	"10",	"6",	"2",	"8:00 PM",	"9:30 PM",	"Wasp's Mixed Training",			"Coaches Host Match Session For Mixed Age Players (Unless A Match Has Been Scheduled (will be noted at bottom))"],		
["F",	"10",	"3",	"2",	"8:00 PM",	"10:00 PM",	"Workington Vs Carlisle (NORTH LEAGUE)",	"MATCH SCHEDULED Workington host Carlisle Team at Home to be played at the Workington Leisure Centre"],
["F",	"11",	"1",	"2",	"7:00 PM",	"9:00 PM",	"Lockerbie Vs Workington (NORTH LEAGUE)",	"MATCH SCHEDULED Lockerbie host Workington. Away Match For Workington to be played at Lockerbie College Sports Centre"],
["F",	"12",	"2",	"3",	"8:00 PM",	"10:00 PM",	"Workington Vs Maryport (NORTH LEAGUE)",	"MATCH SCHEDULED Workington host Maryport at Home to be played at the Workington Leisure Centre"],
["F",	"1",	"4",	"2",	"6:00 PM",	"8:00 PM",	"Penrith Vs Workington (NORTH LEAGUE)",		"MATCH SCHEDULED Penrith host Workington. Away Match For Workington to be played at Penrith Leisure Centre"],
["F",	"2",	"2",	"2",	"8:00 PM",	"10:00 PM",	"Carlisle Vs Workington (NORTH LEAGUE)",	"MATCH SCHEDULED Carlisle host Workington. Away Match For Workington to be played at The Richard Rose Acadamy"],	
["F",	"3",	"1",	"3",	"8:00 AM",	"10:00 PM",	"Workington Vs Lockerbie (NORTH LEAGUE)",	"MATCH SCHEDULED Workington host Lockerbie at Home to be played at the Workington Leisure Centre"],
["F",	"4",	"2",	"1",	"7:00 PM",	"10:00 PM",	"Maryport Vs Workington (NORTH LEAGUE)",	"MATCH SCHEDULED Maryport host Workington. Away Match For Workington to be played at the Netherhall Sports Centre"],
["F",	"4",	"4",	"2",	"7:00 PM",	"9:00 PM",	"Workington Vs Penrith (NORTH LEAGUE)",		"MATCH SCHEDULED Workington host Penrith at Home to be played at the Workington Leisure Centre"],
["F",	"11",	"5",	"1",	"7:00 PM",	"10:00 PM",	"Barrow Sunday League",				"MATCH SCHEDULED Workington Compete In The Barrow Sunday League Hosted By The Thorns @ The Hoops Centre Barrow"],
["F",	"12",	"3",	"1",	"7:00 PM",	"10:00 PM",	"Barrow Sunday League",				"MATCH SCHEDULED Workington Compete In The Barrow Sunday League Hosted By The Thorns @ The Hoops Centre Barrow"],
["F",	"1",	"2",	"1",	"7:00 PM",	"10:00 PM",	"Barrow Sunday League",				"MATCH SCHEDULED Workington Compete In The Barrow Sunday League Hosted By The Thorns @ The Hoops Centre Barrow"],
["F",	"2",	"2",	"1",	"7:00 PM",	"10:00 PM",	"Barrow Sunday League",				"MATCH SCHEDULED Workington Compete In The Barrow Sunday League Hosted By The Thorns @ The Hoops Centre Barrow"],
["F",	"3",	"3",	"1",	"7:00 PM",	"10:00 PM",	"Barrow Sunday League",				"MATCH SCHEDULED Workington Compete In The Barrow Sunday League Hosted By The Thorns @ The Hoops Centre Barrow"]
);