// 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

events = new Array(
	["",	"6",	"30",	"2008",	"12:00 AM",	"11:59 PM",	"Early Registration Deadline",	"Special pricing for early registration ends."],
	["",	"7",	"9", "2008",	"12:00 AM",	"11:59 PM",	"Regular Registration Deadline",	"Regular registration deadline."],
	["",	"8",	"1",	"2008",	"2:00 PM",	"11:59 PM",	"Short Courses Check in",	"Please check-in no earlier than 2:00 PM."],
	["",	"8",	"2",	"2008",	"8:00 AM",	"5:00 PM",	"PAT",	""],
	["",	"8",	"2",	"2008",	"8:00 AM",	"1:00 PM",	"Imaging",	""],
	["",	"8",	"2",	"2008",	"1:00 PM",	"5:00 PM",	"Data Handling",	""],
	["",	"8",	"3",	"2008",	"8:00 AM",	"5:00 PM",	"Chemometrics",	""],
	["",	"8",	"3",	"2008",	"8:00 AM",	"1:00 PM",	"NIR",	""],
	["",	"8",	"3",	"2008",	"12:00 PM",	"11:59 PM",	"Conference Check in",	"Please check-in no earlier than 12:00 PM"],
	["",	"8",	"3",	"2008",	"7:30 PM",	"9:00 PM",	"Opening session",	"Keynote Address."],
	["",	"8",	"3",	"2008",	"9:30 PM",	"11:00 PM",	"Social",	""],
	["",	"8",	"4",	"2008",	"8:00 AM",	"",	"Lecture",	"TBA"],
	["",	"8",	"4",	"2008",	"4:00 PM",	"",	"CNIRS Meeting",	""],
	["",	"8",	"4",	"2008",	"7:00 PM",	"",	"Lecture",	"TBA"],
	["",	"8",	"5",	"2008",	"8:00 AM",	"",	"Lecture",	"TBA"],
	["",	"8",	"5",	"2008",	"5:00 PM",	"6:30 PM",	"Dinner",	"CNIRS/IDRC Picnic"],
	["",	"8",	"5",	"2008",	"7:00 PM",	"9:00 PM",	"Exhibitors Evening",	"Opportunity for exhibitors to showcase their products and innovations"],
	["",	"8",	"6",	"2008",	"8:00 AM",	"",	"Lecture",	"TBA"],
	["",	"8",	"6",	"2008",	"11:45 AM",	"5:30 PM",	"Afternoon Field Trip",	"Hershey Park, Golf Tournament"],
	["",	"8",	"6",	"2008",	"7:00 PM",	"9:00 PM",	"The Gerald S. Birth Award Session",	"2008 Birth Award winner announced."],
	["",	"8",	"7",	"2008",	"8:00 AM",	"",	"Shoot-out",	""],
	["",	"8",	"7",	"2008",	"6:00 PM",	"8:00 PM",	"Banquet",	""],
	["",	"8",	"8",	"2008",	"8:00 AM",	"",	"Special Topics",	"TBA"],
	["",	"8",	"8",	"2008",	"8:00 AM",	"2:00 PM",	"Check Out",	"Please check-out no later than 2:00 PM."]

// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);




