	// 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(
	["",	"10",	"18",	"2007",	"10:00 AM",	"2:00 PM",	" ",	"American Red Cross Blood Drive\, Thursday, October 18th\, 10:00am – 2:00pm at the Sandusky Campus\, 5202 Timber Commons Dr.\, Sandusky\, OH 44870\, Call for an appointment\: 888-627-8345"],
	

	["",	"11",	"15",	"2007",	"6:00 PM",	"",	" ",	"Ohio Business College Fall Preview Night. Bring your friends and family with you to check out Ohio Business College and your options to further your education after high school. Please register by Tuesday, November 13th! There will be refreshments and prizes."],
["",	"3",	"21",	"2008",	"10:00 AM",	"12:00 PM",		"Indoor Easter Egg Hunt Sheffield Campus",	"Prizes to be won "],
["",	"3",	"19",	"2008",	"",	"",		"New Sheffield Village Location Open House",		"Come see our new location."],
["",	"4",	"25",	"2008",	"11:00 AM",	"2:00 PM",		"Sandusky Job Fair",		"Come see all the employers."],
["",	"5",	"9",	"2008",	"1:00 PM",	"3:00 PM",		"Sheffield Village Job Fair",		"Come see all the employers."],
["",	"6",	"18",	"2008",	"9:00 AM",	"4:00 PM",		"Sheffield Village Open House",		"Experience, first-hand, the skills and knowledge required for today’s growing careers."],
["",	"10",	"16",	"2008",	"",	"",			"SHRM Class",		"Call for details."],
["",	"10",	"17",	"2008",	"",	"",			"SHRM Class",		"Call for details."],
["",	"4",	"17",	"2009",	"11:00 AM",	"2:00 PM",			"6th Annual Job Fair",		"Sandusky Campus"],
["",	"6",	"3",	"2009",	"5:00 PM",	"8:00 PM",			"Open House",		"Columbus Campus"],
["",	"10",	"3",	"2009",	"10:00 AM",	"2:00 PM",			"Halloween Happenings",		"Sanduky Campus"],
["",	"6",	"16",	"2010",	"6:00 PM",	"8:00 PM",			"Open House and Community Health Fair",		"Columbus Campus"],
["",	"6",	"7",	"2010",	"",	"",			"Allied Health Evening Quarter Start",		""],
["",	"7",	"5",	"2010",	"",	"",			"Closed in Observance of Independence Day",		""],
["",	"6",	"29",	"2010",	"1:00PM and 6:00 PM",	"",			"New Student Orientation",		"Sheffield Village Campus"],
["",	"6",	"30",	"2010",	"9:00AM and 6:00 PM",	"",			"New Student Orientation",		"Sandusky Campus"],
["",	"8",	"25",	"2010",	"9:00AM and 6:00 PM",	"",			"New Student Orientation",		"Sandusky Campus"],
["",	"7",	"24",	"2010",	"",	"",			"Student Graduation",		"Sandusky Campus"],
["",	"9",	"29",	"2010",	"9:00AM and 6:00 PM",	"",			"New Student Orientation",		"Sandusky Campus"],
["",	"7",	"24",	"2010",	"1:00PM",	"",			"Student Graduation",		"Sheffield Village Campus"],
["",	"6",	"23",	"2010",	"10:00 PM",	"4:00 PM",			"Open House",		"Sheffield Village Campus"],
["",	"7",	"15",	"2010",	"6:00 PM",	"",			"Advisory Board Meeting",		"Sheffield Village Campus"],
["",	"6",	"19",	"2010",	"9:30AM",	"12:00PM",			"International Association of Administrative Professionals(IAAP) Meeting",		"Sheffield Village Campus"],
["",	"9",	"6",	"2010",	"",	"",			"Closed in Observance of Labor Day",		""],
["",	"9",	"27",	"2010",	"",	"",			"Allied Health Day Quarter Start",		""],
["",	"10",	"4",	"2010",	"",	"",			"Business and Allied Health Evening Quarter Start",		""],
["",	"7",	"13",	"2010",	"11:00 AM",	"12:00 PM",			"Student Appreciation Cookout",		"Columbus Campus"],
["",	"7",	"13",	"2010",	"5:30 PM",	"6:30 PM",			"Student Appreciation Cookout",		"Columbus Campus"],
["",	"7",	"29",	"2010",	"7:00 PM",	"",			"Columbus Graduation Ceremony",		"Jeanne B McCoy Community Center for the Arts in New Albany"],
["",	"8",	"18",	"2010",	"6:00 PM",	"8:00 PM",			"Beach Party Open House",		"Columbus Campus"]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
) ;








