// 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",	"4",	"15",	"2010",	"9:00 AM",	"",	"Spring Meeting",	"Pocasset"],
	["Y",	"4",	"20",	"2010",	"8:30-12:00",	"Tee Times",	"Pro-3Am",	"Eastward Ho!"],
	["Y",	"5",	"3",	"2010",	"",	"Tee Times",	"Pro-Pro Match Play Champ",	"LeBaron Hills"],
	["Y",	"5",	"4",	"2010",	"",	"Tee Times",	"Pro-Pro Match Play Champ",	"LeBaron Hills"],
	["Y",	"5",	"6",	"2010",	"10:00",	"Tee Times",	"Pro-3Am",	"Pocasset"],
	["Y",	"5",	"13",	"2010",	"8:30",	"Shotgun",	"Pro-3Am",	"Cummaquid"],
	["Y",	"5",	"17",	"2010",	"",	"Tee Times",	"AHEAD Stroke Play",	"Kittansett"],
	["Y",	"5",	"20",	"2010",	"1:00",	"Tee Times",	"Pro-Pro-Pro",	"Woods Hole"],
	["Y",	"5",	"24",	"2010",	"",	"",	"Pro-1Am",	"CC National & Eastward Ho!"],
	["Y",	"6",	"7",	"2010",	"",	"",	"Pro-Asst",	"The Bay Club"],
	["Y",	"6",	"8",	"2010",	"",	"",	"Pro-Asst",	"The Bay Club"],
	["Y",	"6",	"12",	"2010",	"",	"",	"Boys & Girls Club",	"Sankaty"],
	["Y",	"6",	"13",	"2010",	"",	"",	"Boys & Girls Club",	"Sankaty"],
	["Y",	"6",	"17",	"2010",	"9:00",	"Tee Times",	"Pro-1Am Champ",	"CC of New Bedford"],
	["Y",	"6",	"24",	"2010",	"9:00",	"Shotgun",	"Pro-Lady",	"White Cliffs"],
	["Y",	"7",	"13",	"2010",	"1:00",	"Shotgun",	"Pro-4Junior",	"Squirrel Run"],
	["Y",	"7",	"21",	"2010",	"12:30",	"Tee Times",	"Pro-3Am",	"The Bay Club"],
	["Y",	"8",	"11",	"2010",	"1:00",	"Tee Times",	"Pro-3Am",	"GC of Cape Cod"],
	["Y",	"8",	"18",	"2010",	"1:00",	"Shotgun",	"Gary Philbrick Memorial",	"Olde Barnstable"],
	["Y",	"9",	"23",	"2010",	"9:00",	"Tee Times",	"Pro-3Senior",	"Olde Barnstable"],
	["Y",	"9",	"30",	"2010",	"7:30",	"Tee Times",	"Chapter Championship",	"New Seabury"],
	["Y",	"10",	"6",	"2010",	"12:30",	"Shotgun",	"Pro-2/3Am",	"Sankaty Head"],
	["Y",	"10",	"7",	"2010",	"a.m.",	"Shotgun",	"Pro-2/3Am",	"Sankaty Head"],
	["Y",	"10",	"12",	"2010",	"12:00",	"Tee Times",	"Cape Cod Cup",	"Oyster Harbors"],
	["Y",	"10",	"14",	"2010",	"",	"",	"Fall Pro-Am Week",	"GC of Cape Cod"],
	["Y",	"10",	"15",	"2010",	"",	"",	"Fall Pro-Am Week",	"The Ridge Club"],
	["Y",	"10",	"19",	"2010",	"9:00",	"",	"Fall Meeting",	"TBA"],
	["Y",	"10",	"26",	"2010",	"8:00",	"Tee Times",	"Match Play Championship",	"GC of Cape Cod"],
	["Y",	"10",	"27",	"2010",	"8:00",	"Tee Times",	"Match Play Championship",	"GC of Cape Cod"],
	["Y",	"11",	"2",	"2010",	"10:00",	"Shotgun",	"Pro-3Am",	"Wianno"],
	["Y",	"11",	"9",	"2010",	"10:00",	"Shotgun",	"Pro-3Am",	"The Ridge Club"]
	
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);




