// 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(
	
	["",	"8",	"14",	"2009",	"Lecture - 5:30 - 6:30pm",	"Run - 7:00pm",	"Lecture & Run",	"\r TEC Overview \& Swim Technique \r\r Lecture will be held at IHC Performance & Health Center. Lower Level\r\rRuns will be guided runs with the St. George Running Center Team "],
	["",	"8",	"15",	"2009",	"TBA",	"TBA",	"Swim - SHAC",	""],
	["",	"8",	"16",	"2009",	"TBA",	"TBA",	"Bike",	""],
	["",	"9",	"11",	"2009",	"Lecture - 5:30 - 6:30pm",	"Run - 7:00pm",	"Lecture & Run",	"\r Running \& Cycling Techniques\r\r Lecture will be held at IHC Performance & Health Center. Lower Level\r\rRuns will be guided runs with the St. George Running Center Team "],
	["",	"9",	"12",	"2009",	"",	"",	"Swim - 5:00 - 7:00 am ",	"Meet at the SHAC"],
	["",	"9",	"13",	"2009",	"",	"",	"Group Bike - 7:00 am",	"Meeting place TBA"],
	["",	"10",	"23",	"2009",	"\rLecture - 7:00 - 8:30pm",	"\rWomen\’s Triathlon Training 101 \rWomen\’s Nutrition versus Men\’s Nutrition\r\rSpecial Speaker - TBA\r\r Lecture will be held at IHC Performance & Health Center. Lower Level", "",	""],
	["",	"10",	"24",	"2009",	"",	"",	"\rSave-A-Sister 10k & Swim - 8:00 am",	"Meet at the SHAC"],
	["",	"10",	"25",	"2009",	"",	"",	"\rGroup Bike - 7:00 am",	"Meeting place TBA"],
	["",	"11",	"13",	"2009",	"","","\rLecture - 7:00 - 8:30pm","\r Winter Specific Training \r\r Lecture will be held at IHC Performance & Health Center. Lower Level"],
	["",	"11",	"14",	"2009",	"",	"", "\rTurkey Triathlon - 9:00 am",	"Sprint distance"],
	["",	"12",	"11",	"2009",	"",	"",	"\rGroup Run - 6:00pm",	"\rRuns will be guided runs with the St. George Running Center Team "],
	["",	"12",	"12",	"2009",	"\rLecture - 8:30am", "", "\rGroup Swim - 7:00 am ",	"Swim - At the SHAC \rLecture - Health & Performance Center"],
	["",	"1",	"8",	"2010",	"",	"",	"\rGroup Run - 6:00pm",	"\rRuns will be guided runs with the St. George Running Center Team "],
	["",	"1",	"9",	"2010",	"\rLecture - 8:30 am ",	"Group Bike - 10:30 am",	"Group Swim - 5:00 - 7:00am",	"\r Swim - at the SHAC\r Bike - TBA\r Lecture - IHC Performance & Health Center"],
	["",	"2",	"12",	"2010",	"",	"",	"\rGroup Run - 6:00pm",	""],
	["",	"2",	"13",	"2010",	"\rLecture - 8:30 am","Group Bike - 10:30 am", "\rGroup Swim - 7:00 am", "\r Swim - at the SHAC\r Bike - TBA\r Lecture - IHC Performance & Health Center"],
	["",	"3",	"12",	"2010",	"TBA",	"TBA",	"Full Distance Swim",	""],
	["",	"3",	"13",	"2010",	"TBA",	"TBA",	"Full Distance Bike",	""],
	["",	"3",	"14",	"2010",	"TBA",	"TBA",	"Full Distance Run",	""],
	["",	"4",	"9",	"2010",	"Lecture - 7:00 - 8:30pm",	"",	"Lecture",	"\rOpen Water Technique & Transitions\rTEC Wrap-Up\r\rLecture will be held at IHC Performance & Health Center. Lower Level"],
	["",	"4",	"10",	"2010",	"",	"TEC Banquet - 6:00 pm", "Olympic Triathlon - 7:00 am",	"\rBanquet will be at 6:00pm at the Community Arts Building 86 N Main"]
	
	
	
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);





