// 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",	"1",	"1",	"2006",	"1:00 AM",	"12:00 PM",	"New Year's Day",	"New Year's Day will be ushered in with great joy and celebration. Come as you are."],
	["F",	"1",	"3",	"2",	"1:00 AM",	"12:59 PM",	"Martin Luther King Day",	"Honors civil rights leader Rev Martin Luther King."],
	["Y",	"2",	"2",	"2005",	"1:00 AM",	"12:59 PM",	"Groundhog Day",	"If Philadelphia's groundhog 'Punxsutawney Phil' sees his shadow, there will be six more weeks of winter weather. If he does not see his shadow, there will be an early spring."],
	["Y",	"2",	"14",	"2005",	"1:00 AM",	"12:59 PM",	"Valentine's Day",	"Traditional celebration of love and romance, including the exchange of cards, candy, flowers, and other gifts."],
	["F",	"2",	"3",	"2",	"1:00 AM",	"12:59 PM",	"President's Day",	"Honors the birthdays of George Washington, Abraham Lincoln and other past American Presidents."],
	["F",	"3",	"0",	"0",	"1:00 AM",	"12:59 PM",	"Easter",	"Traditional celebration of the resurrection of Jesus Christ."],
	["Y",	"3",	"17",	"2005",	"1:00 AM",	"12:59 PM",	"St. Patrick's Day",	"A celebration of Irish heritage and culture, based on the Catholic feast of St. Patrick. Primary activity is simply the wearing of green clothing ('wearing of the green')."],
	["Y",	"3",	"22",	"2005",	"1:00 AM",	"12:59 PM",	"World Water Day",	"A day to promote appreciation of the world's most valuable commodity - water."],
	["Y",	"4",	"1",	"2005",	"1:00 AM",	"12:59 PM",	"April Fool's Day",	"A day to play tricks on or 'fool' family, friends, and coworkers, if so inclined. As Ecclesiastes says: 'There is a time for everything'; in this case, a time to be silly."],
	["F",	"5",	"2",	"1",	"1:00 AM",	"12:59 PM",	"Mother's Day",	"Honors mothers and motherhood (made a Federal Holiday by Presidential order)."],
	["F",	"5",	"3",	"7",	"1:00 AM",	"12:59 PM",	"Armed Forces Day",	"Celebrates the United States Army, Navy, Air Force and Marine Corps; formerly - each used to have separate days."],
	["F",	"5",	"4",	"2",	"1:00 AM",	"12:59 PM",	"Memorial Day",	"Honors the nation's war dead, and those we love who have passed away. Traditionally a time to decorate graves and remember those who have gone before us. Also marks traditional beginning of summer."],
	["Y",	"6",	"14",	"2005",	"1:00 AM",	"12:59 PM",	"Flag Day",	"Honors the American flag, encourages patriotism. Citizens are urged to fly the flag and study its traditions."],
	["F",	"6",	"3",	"1",	"1:00 AM",	"12:59 PM",	"Father's Day",	"Honors all Fathers and fatherhood."],
	["Y",	"7",	"4",	"2005",	"1:00 AM",	"12:59 PM",	"Independence Day",	"Celebrates our Declaration of Independence from England in 1776, usually called the Fourth of July."],
	["F",	"9",	"1",	"2",	"1:00 AM",	"12:59 PM",	"Labor Day",	"Celebrates the achievements of workers, giving them a day of rest - marks traditional end of summer."],
	["F",	"10",	"2",	"2",	"1:00 AM",	"12:59 PM",	"Columbus' Day",	"Honors the traditional discovery of the Americas by Christopher Columbus."],
	["Y",	"10",	"31",	"2005",	"1:00 AM",	"12:59 PM",	"Halloween",	"Celebrates All Hallow's Eve, decorations include jack o'lanterns, costume wearing parties, and candy - considered a pagan holiday by many Christians."],
	["Y",	"11",	"11",	"2005",	"1:00 AM",	"12:59 PM",	"Veteran's Day",	"Honors all veterans of the United States armed forces. A traditional observation is a moment of silence at 11 AM remembering those who fought for peace."],
	["F",	"11",	"4",	"5",	"1:00 AM",	"12:59 PM",	"Thanksgiving",	"A day to give thanks for your many blessings - traditionally for the Autumn harvest, and it marks the beginning of the 'holiday season'."],
	["Y",	"12",	"25",	"2005",	"1:00 AM",	"12:59 PM",	"Christmas",	"Celebration of the traditional day of Jesus' birth - God was made flesh and dwelt among us."],
	["",	"9",	"01",	"2011",	"9:00a",	"",	"Teacher Workshop Day",	""],	
	["",	"9",	"02",	"2011",	"",	"",	"School Closed",	""],	
	["",	"9",	"29",	"2011",	"",	"",	"Rosh Hashana",	"School Closed"],	
	["",	"9",	"30",	"2011",	"",	"",	"Rosh Hashana",	"School Closed"],	
	["",	"9",	"06",	"2011",	"",	"",	"FIRST DAY OF SCHOOL",	""],	
	["",	"9",	"06",	"2011",	"",	"",	"Kindergarten Half-day Schedule", ""],	
	["",	"9",	"07",	"2011",	"",	"",	"Kindergarten Half-day Schedule", ""],	
	["",	"9",	"15",	"2010",	"",	"",	"Kindergarten Half-day Schedule", ""],	
	["",	"9",	"06",	"2011",	"",	"",	"Early Program & Beginners Phase-in Schedule",	""],	
	["",	"9",	"07",	"2011",	"",	"",	"Early Program & Beginners Phase-in Schedule",	""],	
	["",	"9",	"08",	"2011",	"",	"",	"Early Program & Beginners Phase-in Schedule",	""],	
	["",	"9",	"09",	"2010",	"",	"",	"Early Program & Beginners Phase-in Schedule",	""],	
	["",	"9",	"06",	"2011",	"8:15",	"10:00a", "CFA Coffee ", ""],
	["",	"9",	"07",	"2011",	"8:15",	"10:00a", "CFA Coffee ", ""],
	["",	"9",	"08",	"2011",	"8:15",	"10:00a", "CFA Coffee ", ""],
	["",	"9",	"09",	"2011",	"8:15",	"10:00a", "CFA Coffee ", ""],
	["",	"9",	"17",	"2010",	"8:15",	"10:00a", "CFA Coffee ", ""],
	["",	"9",	"06",	"2011",	"3:30", "", "Extended Day Begins", ""],	
	["",	"9",	"07",	"2011",	"9:30", "10:00", "Music School Orientation", ""],	
	["",	"9",	"08",	"2011",	"9:30", "10:00", "Music School Orientation", ""],	
	["",	"9",	"13",	"2011",	"6:00p", "", "Board Meeting", ""],	
	["",	"9",	"09",	"2011",	"", "", "Regular Schedule for EP & Beginners", ""],	
	["",	"9",	"19",	"2011",	"", "", "Afterschool and Music School Fall Trimester Begins", ""],	
	["",	"9",	"12",	"2011",	"", "", "Discovery Program Begins", ""],	
	["",	"9",	"20",	"2010",	"6:30", "8:30", "Beginner's Reception", "Lobby"],	
	["",	"9",	"21",	"2010",	"8:45a", "", "Early Program Tour Guide Orientation", ""],	
	["",	"9",	"13",	"2011",	"3:45p", "", "Full Staff Metting", ""],	
	["",	"9",	"22",	"2010",	"6:30", "8:30", "Early Program Reception", "Lobby"],	
	["",	"9",	"21",	"2010",	"8:45a", "", "Adult Yoga", ""],	
	["",	"9",	"28",	"2010",	"8:45a", "", "Adult Yoga", ""],	
	["",	"9",	"21",	"2011",	"6:00p", "", "CFA Men's Night Out", ""],	
	["",	"9",	"16",	"2011",	"8:30a", "", "Child Chat", "St. Monica's Hall"],	
	["",	"9",	"16",	"2011",	"9:00", "", "All School Assembly ", ""],	
	["",	"9",	"19",	"2011",	"", "", "Homework Begins", ""],	
	["",	"9",	"26",	"2011",	"6:30", "8:30", "Kindergarten Reception", "Lobby"],	
	["",	"9",	"28",	"2010",	"9:00a", "", "Admissions Tour", ""],	
	["",	"9",	"20",	"2011",	"6:40p", "", "Curriculum Night Grades 1-5", ""],	
	["",	"9",	"19",	"2011",	"6:30", "8:30", "Early Program Reception", "Lobby"],	
	["",	"9",	"22",	"2011",	"8:45a", "10:00", "CFA General Meeting", "St. Monica's Hall"],	
	["",	"9",	"30",	"2010",	"9:00a", "", "Admissions Tour", ""],	
	["",	"9",	"18",	"2010",	"", "", "Yom Kippur", ""],	
	["",	"9",	"22",	"2011",	"6:30p", "", "Curriculum Night - Beginner, EP & Kindergarten", ""],	
	["",	"9",	"22",	"2009",	"3:30p", "", "Upper Level Transfer Workshop", ""],	
	["",	"9",	"22",	"2009",	"6:30", "9:00p", "Curriculum Night", ""],	
	["",	"9",	"23",	"2009",	"9:30a", "", "Instrumental Music Demonstration for Children", ""],		
	["",	"9",	"23",	"2009",	"3:30", "4:30p", "Caedmon Choris Begins", ""],	
	["",	"9",	"23",	"2009",	"4:30", "5:30p", "Caedmon in Motion Begins", ""],	
	["",	"9",	"24",	"2009",	"6:30", "8:30p", "International Family Reception", ""],	
	["",	"9",	"23",	"2011",	"8:30", "10:30a", "Child Chat", "St. Monica's Hall"],	
	["",	"9",	"28",	"2009",	"", "", "SCHOOL CLOSED", ""],	
	["",	"9",	"28",	"2009",	"", "", "Yom Kippur", ""],
	["",	"10",	"04",	"2010",	"", "", "CFA Class Rep. Meeting", ""],
	["",	"10",	"05",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - EP Schneider", ""],
	["",	"10",	"07",	"2011",	"", "", "Elementary Apple Picking Trip", ""],
	["",	"10",	"07",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"21",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"03",	"2011",	"6:30", "8:30", "Lower Level Reception", "Lobby"],
	["",	"10",	"05",	"2009",	"6:30", "8:00p", "CFA Class Rep Meeting", ""],
	["",	"10",	"06",	"2010",	"", "", "Administration Meeting", ""],
	["",	"10",	"05",	"2010",	"", "", "Adult Yoga", ""],
	["",	"10",	"06",	"2011",	"6:30", "8:30p", "Open House for Prospective Families #1", ""],
	["",	"10",	"11",	"2011",	"6:30", "8:00p", "3rd Grade Reception", "Lobby"],
	["",	"10",	"18",	"2011",	"", "", "CFA Photo Day #1", ""],
	["",	"10",	"08",	"2009",	"6:30", "8:30p", "CFA Welcome Party", ""],
	["",	"10",	"19",	"2011",	"", "", "CFA Photo Day #2", ""],
	["",	"10",	"08",	"2010",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"10",	"2011",	"", "", "SCHOOL CLOSED", ""],
	["",	"10",	"11",	"2010",	"", "", "Columbus Day", ""],
	["",	"10",	"13",	"2009",	"6:00", "9:00p", "FACES Potluck Supper", ""],
	["",	"10",	"11",	"2011",	"", "", "EP & Beginner Classroom Observations Begin", ""],
	["",	"10",	"18",	"2011",	"6:30", "8:00p", "4th Grade Reception", "Lobby"],
	["",	"10",	"14",	"2010",	"", "", "Annual Giving Mailing", ""],
	["",	"10",	"12",	"2010",	"", "", "Adult Yoga", ""],
	["",	"10",	"15",	"2010",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"14",	"2011",	"", "", "Admissions Deadline for Sibling Applications", ""],
	["",	"10",	"18",	"2010",	"", "", "Annual Giving New Family Coffee #1", ""],
	["",	"10",	"25",	"2011",	"", "", "Annual Giving Liaison Dinner", "Off Site"],
	["",	"10",	"05",	"2011",	"8:45", "9:30", "Early Childhood Montessori Morning", ""],
	["",	"10",	"20",	"2010",	"", "", "Admin. Meeting", ""],
	["",	"10",	"19",	"2010",	"", "", "Adult Yoga", ""],
	["",	"10",	"21",	"2010",	"6:30p", "8:00p", "Reception at Dr. B's - K McGregor", ""],
	["",	"10",	"22",	"2010",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"21",	"2011",	"", "", "CFA Halloween Raffle & Dance", ""],
	["",	"10",	"05",	"2011",	"", "", "Parent In Action Evening(PIA)", "5th Grade"],
	["",	"10",	"12",	"2011",	"", "", "Parent In Action Evening(PIA)", "EP"],
	["",	"10",	"17",	"2011",	"", "", "Parent In Action Evening(PIA)", "LL"],
	["",	"10",	"19",	"2011",	"", "", "Parent In Action Evening(PIA)", "EP"],
	["",	"10",	"27",	"2011",	"", "", "Parent In Action Evening(PIA)", "3rd Grade"],
	["",	"10",	"24",	"2009",	"1:00", "3:30p", "CFA Picnic in the Park", ""],
	["",	"10",	"24",	"2011",	"", "", "CFA Fall Pajama Program", "All Week"],
	["",	"10",	"25",	"2011",	"", "", "CFA Fall Pajama Program", "All Week"],
	["",	"10",	"26",	"2011",	"", "", "CFA Fall Pajama Program", "All Week"],
	["",	"10",	"27",	"2011",	"", "", "CFA Fall Pajama Program", "All Week"],
	["",	"10",	"28",	"2011",	"", "", "CFA Fall Pajama Program", "All Week"],
	["",	"10",	"21",	"2011",	"", "", "CFA Fall Pajama Day Children's Assembly", ""],
	["",	"10",	"26",	"2010",	"", "", "Adult Yoga", ""],
	["",	"10",	"28",	"2010",	"", "", "First Communion Meeting", ""],
	["",	"10",	"25",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - LL Franklin", ""],
	["",	"10",	"18",	"2011",	"3:45a", "", "Full Staff Meeting", ""],
	["",	"10",	"26",	"2011",	"6:30", "8:30p", "Open House for Prospective Families #2", ""],
	["",	"11",	"04",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"10",	"31",	"2009",	"1:00", "3:30p", "CFA Picnic in the Park (rain date)", ""],
	["",	"11",	"03",	"2011",	"", "", "Parent In Action Evening(PIA)", "4th Grade"],
	["",	"11",	"14",	"2011",	"", "", "Parent In Action Evening(PIA)", "Kindergarten"],
	["",	"11",	"30",	"2011",	"", "", "Parent In Action Evening(PIA)", "Beginners"],
	["",	"11",	"06",	"2010",	"10:00a", "12:00p", "Singles Affinity Group", ""],
	["",	"11",	"16",	"2010",	"", "", "CFA Book Fair-Afternoon (Elementary Wish Lists)", ""],
	["",	"11",	"01",	"2011",	"6:30", "8:00p", "Upper Level Reception", "Lobby"],
	["",	"11",	"17",	"2010",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"15",	"2011",	"", "",  "HALF DAY OF SCHOOL", ""],
	["",	"11",	"24",	"2010",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"25",	"2010",	"", "", "SCHOOL CLOSED", "Thanksgiving Day"],
	["",	"11",	"26",	"2010",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"16",	"2011",	"8:30", "5:00p", "Family Conferences for Beginners/Early Program/Grade 1-5", "Childcare Available"],	
	["",	"11",	"15",	"2011",	"12:30", "5:00p", "Family Conferences for Beginners/Early Program/Grade 1-5", "School Open with Afterschool and Extended Day, Childcare Available"],
	["",	"11",	"16",	"2010",	"12:00", "5:00p", "CFA Book Fair", ""],
	["",	"11",	"17",	"2010",	"8:30", "5:00p", "CFA Book Fair", ""],
	["",	"11",	"03",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - ML Schneider", ""],
	["",	"11",	"11",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"11",	"08",	"2009",	"8:45a", "9:30a", "Annual Giving New family Coffee #2", ""],
	["",	"11",	"09",	"2011",	"8:45", "9:45a", "Montessori Morning for Early Program and Beginner Families (Parent Partnership)", ""],
	["",	"11",	"01",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"03",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"04",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"09",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"10",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"11",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"15",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"16",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"18",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"22",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"11",	"08",	"2011",	"6:00p", "", "Board Meeting", ""],
	["",	"11",	"02",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"11",	"10",	"2010",	"3:45p", "", "Admin Meeting", ""],
	["",	"11",	"09",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"11",	"18",	"2010",	"6:00p", "7:00p", "Afterschool Winter Term Open House", "Lobby"],
	["",	"11",	"16",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"11",	"23",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"11",	"30",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"11",	"18",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"11",	"12",	"2010",	"9:00", "10:30a", "Kindergarten Transition Coffee for Early Program Families", ""],
	["",	"11",	"13",	"2010",	"9:00a", "5:00p", "Admissions Playgroups for Kindergarten Applicants", ""],
	["",	"11",	"01",	"2010",	"", "", "Yorkville Pantry &amp; Used Clothing Drive", ""],
	["",	"11",	"11",	"2010",	"", "", "Veteran's Day", ""],
	["",	"11",	"11",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - ML Page", ""],
	["",	"11",	"02",	"2010",	"", "", "Yorkville Pantry &amp; Used Clothing Drive", ""],
	["",	"11",	"10",	"2010",	"6:30", "8:30p", "FACES Workshop - Topic TBA", ""],
	["",	"11",	"03",	"2010",	"", "", "Yorkville Pantry &amp; Used Clothing Drive", ""],
	["",	"11",	"04",	"2010",	"", "", "Yorkville Pantry &amp; Used Clothing Drive", ""],
	["",	"11",	"15",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - LL Woodruff/Rossano", ""],
	["",	"11",	"15",	"2010",	"", "", "Elementary Reports Due", ""],
	["",	"11",	"07",	"2011",	"", "", "Yorkville Pantry &amp; Used Clothing Drive", ""],
	["",	"11",	"19",	"2010",	"8:30", "10:00a", "Child Chat", "Musicale"],
	["",	"11",	"19",	"2010",	"9:00a", "", "Children's Assembly", ""],
	["",	"11",	"24",	"2009",	"", "", "HALF DAY OF SCHOOL", ""],
	["",	"11",	"23",	"2010",	"11:00a", "", "Potlatch Begins", ""],
	["",	"11",	"22",	"2011",	"11:30a", "", "Half-Day Early Program Dismissal", ""],
	["",	"11",	"22",	"2011",	"9:00a", "", "Thanksgiving Assembly for Children", ""],
	["",	"11",	"22",	"2011",	"12:30p", "", "Early Dismissal", ""],
	["",	"11",	"23",	"2011",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"24",	"2011",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"25",	"2009",	"", "", "Thanksgiving Day", ""],
	["",	"11",	"25",	"2011",	"", "", "SCHOOL CLOSED", ""],
	["",	"11",	"28",	"2011",	"6:00p", "", "Afterschool Winter Term Registration Deadline", "Contact Andrew Kagan, ext. 316"],
	["",	"11",	"29",	"2011",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"11",	"30",	"2010",	"9:30a", "10:30", "Violin Curriculum Orientation Meeting", ""],
	["",	"12",	"1",	"2010",	"6:30", "8:00p", "Reception at Dr. B's - UL Lewis", ""],
	["",	"12",	"1",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"12",	"2",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"12",	"7",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"12",	"8",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"12",	"9",	"2010",	"9:00a", "", "Admissions Tour", ""],
	["",	"12",	"1",	"2010",	"3:45p", "", "Admin Meeting", ""],
	["",	"12",	"7",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"12",	"14",	"2010",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"12",	"2",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"12",	"2",	"2011",	"6:00p", "", "Afterschool Fall Term Ends", ""],
	["",	"12",	"5",	"2011",	"3:40p", "", "Afterschool Winter Term Begins", ""],
	["",	"12",	"9",	"2010",	"", "", "CFA Bake Sales", ""],
	["",	"12",	"10",	"2010",	"", "", "CFA Bake Sales", ""],
	["",	"12",	"9",	"2010",	"6:30p", "8:30p", "CFA General Meeting", "Childcare Available"],
	["",	"12",	"10",	"2011",	"9:00a", "12:00p", "ISEE Testing for Caedmon Students", ""],
	["",	"12",	"11",	"2010",	"9:00a", "5:00p", "Playgroups for Kindergarten Applicants", ""],
	["",	"12",	"12",	"2011",	"9:00a", "", "Children's Assembly", "Holiday Story"],
	["",	"12",	"15",	"2011",	"1:30p", "", "Potlatch Party", "Grades K-5"],
	["",	"12",	"15",	"2011",	"2:30p", "3:30p", "Holiday Musical Program Rehearsal", ""],
	["",	"12",	"16",	"2011",	"9:00a", "10:00a", "All School Holiday Music Program", "St. Monica's Hall, Enter 79th St."],
	["",	"12",	"16",	"2011",	"10:15a", "", "Early Dismissal from Classrooms", "No Afterschool or Extended Day"],
	["",	"12",	"17",	"2010",	"12:00p", "", "Faculty/Staff Party", ""],
	["",	"12",	"19",	"2010",	"", "", "School Closed", ""],
	["",	"12",	"19",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"20",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"21",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"22",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"23",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"26",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"27",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"28",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"29",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"30",	"2011",	"8:30a", "3:30p", "Wonter Bridge Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"20",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"21",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"22",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"22",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"22",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"23",	"2011",	"", "", "School Closed", ""],
		["",	"12",	"26",	"2011",	"", "", "School Closed", ""],
["",	"12",	"24",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"27",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"27",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"28",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"28",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"29",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"29",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"30",	"2011",	"", "", "School Closed", ""],
	["",	"12",	"30",	"2010",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"12",	"31",	"2010",	"", "", "School Closed", "Second Semester Tuition Due"],
	["",	"1",	"2",	"2012",	"", "", "School Closed", "Teacher Workshop Day"],
	["",	"1",	"3",	"2012",	"", "", "Children Return to School", "Full Day Schedule"],
	["",	"1",	"6",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"1",	"11",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"1",	"13",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"1",	"18",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"1",	"19",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"1",	"4",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"1",	"11",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"1",	"18",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"1",	"25",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"1",	"7",	"2011",	"8:30", "10:00a", "Child Chat", ""],
	["",	"1",	"7",	"2011",	"", "", "Exmissions Mailed", "Grade 5"],
	["",	"1",	"06",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"1",	"13",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"1",	"20",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"1",	"8",	"2011",	"9:00a", "12:00p", "ISEE Testing for Non-Caedmon Students", ""],
	["",	"1",	"12",	"2012",	"6:30p", "8:30p", "FACES/CFA Potluck Supper", "Childcare Available"],
	["",	"1",	"17",	"2012",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"1",	"10",	"2012",	"6:00p", "", "Board Meeting", ""],
	["",	"1",	"11",	"2012",	"6:30p", "8:00p", "Elementary Applicant Reception", ""],
	["",	"1",	"25",	"2012",	"6:30p", "8:00p", "Early Program Applicant Reception", ""],
	["",	"1",	"12",	"2012",	"8:45p", "10:00p", "CFA General Meeting (St. Monica's Hall)", "Childcare Available"],
	["",	"1",	"16",	"2012",	"", "", "School Closed", "Martin Luther King Jr. Day"],
	["",	"1",	"19",	"2012",	"9:00a", "", "Children's Assembly", "MLK Jr."],
	["",	"1",	"22",	"2011",	"9:00a", "12:00p", "ISEE Testing for Non-Caedmon Students", ""],
	["",	"1",	"26",	"2012",	"6:30p", "8:30p", "CFA/FACES Book Fair", ""],
	["",	"1",	"27",	"2011",	"7:00p", "8:30p", "Children's Instrumental Music Recital #1", "Lobby"],
	["",	"1",	"31",	"2012",	"", "", "Re-Enrollment Contracts Due", ""],
	["",	"2",	"1",	"2012",	"8:45a", "9:30a", "Early Childhood Montessori Morning", ""],
	["",	"2",	"2",	"2011",	"", "6:30p", "Dr. Ned Hallowell guest speaker", "Lobby"],
	["",	"2",	"1",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"2",	"8",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"2",	"15",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"2",	"3",	"2011",	"7:00p", "8:30p", "Children's Instrumental Music Recital #2", "Lobby"],
	["",	"2",	"2",	"2012",	"6:30p", "8:30p", "Alum Parent Cocktail Party", ""],
	["",	"2",	"3",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"2",	"10",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"2",	"17",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"2",	"24",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"2",	"09",	"2012",	"", "", "Upper Level Bake Sale", ""],
	["",	"2",	"10",	"2012",	"", "", "Upper Level Bake Sale", ""],
	["",	"2",	"16",	"2012",	"", "", "Afterschool Spring Term Open House", "Lobby"],
	["",	"2",	"14",	"2012",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"2",	"15",	"2011",	"6:30p", "8:30p", "FACES Workshop", "Childcare Available"],
	["",	"2",	"16",	"2011",	"6:30p", "8:00p", "Admissions Reception for Accepted Elementary Families", ""],
	["",	"2",	"16",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"2",	"17",	"2011",	"6:30p", "8:30p", "Class of '09 Parent Cocktail Party", ""],
	["",	"2",	"17",	"2011",	"9:00a", "", "Admissions Accepted Elementary Tour", ""],
	["",	"2",	"17",	"2012",	"9:00a", "", "Children's Assembly", ""],
	["",	"2",	"21",	"2011",	"", "", "School Closed", "Presidents Day"],
	["",	"2",	"22",	"2011",	"", "", "School Closed", ""],
	["",	"2",	"27",	"2012",	"", "", "Afterschool Spring Term Registration Deadline", "(Contact Andrew Kagan, ext. 316)"],
	["",	"2",	"25",	"2012",	"", "", "Spring Fundraiser Preparations", ""],
	["",	"3",	"2",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"3",	"16",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"3",	"2",	"2011",	"6:00p", "7:30p", "Sports Night", "UL-Lewis"],
	["",	"3",	"1",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"3",	"8",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"3",	"15",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"3",	"3",	"2011",	"", "", "Afterschool Winter Term Ends", ""],
	["",	"3",	"2",	"2012",	"6:30p", "9:30p", "CFA Spring Fundraiser", "Normal Afterschool and Extended Day"],
	["",	"3",	"3",	"2012",	"12:00p", "4:00p", "CFA Spring Fundraiser Clean-up Day", ""],
	["",	"3",	"5",	"2012",	"", "", "Music School and Afterschool Spring Term Begins", ""],
	["",	"3",	"7",	"2011",	"9:00a", "", "Admissions Accepted Early Program Tour", ""],
	["",	"3",	"8",	"2011",	"6:00p", "7:30p", "Sports Night", "ML-Page"],
	["",	"3",	"8",	"2011",	"6:30p", "8:00p", "Admissions Reception for Accepted Early Program Families", ""],
	["",	"3",	"02",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
		["",	"3",	"09",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"3",	"16",	"2012",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],

	["",	"3",	"12",	"2012",	"9:00a", "", "Children's Assembly", ""],
	["",	"3",	"13",	"2012",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"3",	"16",	"2011",	"10:00a", "", "First Reconciliation", "St. Monica's Church"],
	["",	"3",	"16",	"2011",	"6:00p", "7:30p", "Sports Night", "ML-Schneider"],
	["",	"3",	"18",	"2011",	"", "", "Last Day of School", "Normal Afterschool and Extended Day"],
	["",	"3",	"21",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"22",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"23",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"24",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"25",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"28",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"29",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"30",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"31",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"3",	"21",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"22",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"23",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"24",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"25",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"28",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"29",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"30",	"2011",	"", "", "School Closed", ""],
	["",	"3",	"31",	"2011",	"", "", "School Closed", ""],
	["",	"4",	"6",	"2012",	"", "", "School Closed", "Good Friday"],
	["",	"4",	"9",	"2012",	"", "", "School Closed, Teacher Workshop Day", "CFA Teacher/ Staff Luncheon"],
	["",	"4",	"2",	"2012",	"", "", "Children Return to School (Full Day Schedule)", "Passover ends"],
	["",	"4",	"11",	"2012",	"8:45a", "9:30a", "Early Childhood Montessori Morning", ""],
	["",	"4",	"6",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"4",	"20",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"4",	"5",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"4",	"12",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"4",	"19",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"4",	"26",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"4",	"13",	"2012",	"8:30", "10:00a", "Child Chat", ""],
	["",	"4",	"20",	"2012",	"8:30", "10:00a", "Child Chat", ""],
	["",	"4",	"27",	"2012",	"8:30", "10:00a", "Child Chat", ""],
	["",	"4",	"12",	"2012",	"", "", "Grade 4 Overnight Trip", "to Nature's Classroom in Ivoryton, CT"],
	["",	"4",	"13",	"2012",	"", "", "Grade 4 Overnight Trip", "to Nature's Classroom in Ivoryton, CT"],
	["",	"4",	"24",	"2012",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"4",	"10",	"2012",	"6:00p", "", "Board Meeting", ""],
	["",	"4",	"17",	"2012",	"9:00a", "", "Children's Assembly", ""],
	["",	"4",	"13",	"2011",	"6:30p", "8:30p", "FACES Workshop", "Childcare Available"],
	["",	"4",	"16",	"2012",	"", "", "Open Classroom for Early Program and Beginners Music", "Schedule TBA"],
	["",	"4",	"17",	"2012",	"", "", "Open Classroom for Early Program and Beginners Music", "Schedule TBA"],
	["",	"4",	"18",	"2012",	"", "", "Open Classroom for Early Program and Beginners Music", "Schedule TBA"],
	["",	"4",	"19",	"2012",	"", "", "Open Classroom for Early Program and Beginners Music", "Schedule TBA"],
		["",	"4",	"20",	"2012",	"", "", "Open Classroom for Early Program and Beginners Music", "Schedule TBA"],

	["",	"4",	"19",	"2012",	"", "", "Upper Level Bake Sale", ""],
	["",	"4",	"20",	"2012",	"", "", "Upper Level Bake Sale", ""],
	["",	"4",	"20",	"2011",	"9:00a", "10:30a", "Middle School Panel Discussion wiht Admissions Directors", "(Grade 3-4 Families)"],
	["",	"4",	"25",	"2012",	"", "", "Upper Level Overnight Trip", "to Greenkill Outdoor Environmental Education Center in Huguenot, NY"],
	["",	"4",	"26",	"2012",	"", "", "Upper Level Overnight Trip", "to Greenkill Outdoor Environmental Education Center in Huguenot, NY"],
	["",	"4",	"27",	"2012",	"", "", "Upper Level Overnight Trip", "to Greenkill Outdoor Environmental Education Center in Huguenot, NY"],
	["",	"4",	"26",	"2012",	"6:30p", "10:00p", "CFA Men's Night Out", ""],
	["",	"4",	"27",	"2012",	"2:15p", "3:30p", "Grandparent/Special Friend Day for Full-Day Early Program", ""],
	["",	"4",	"27",	"2012",	"", "", "Elementary Observations End", ""],
	["",	"5",	"1",	"2011",	"3:30p", "4:30p", "Children's Instrumental Music Recital", ""],
	["",	"5",	"3",	"2011",	"3:00p", "3:30p", "First Communion Rehearsal", ""],
	["",	"5",	"4",	"2011",	"3:00p", "3:30p", "First Communion Rehearsal", ""],
	["",	"5",	"5",	"2011",	"3:00p", "3:30p", "First Communion Rehearsal", ""],
	["",	"5",	"4",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"10",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"11",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"12",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"16",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"17",	"2011",	"9:00a", "", "Admissions Tour", ""],
	["",	"5",	"4",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"5",	"25",	"2011",	"3:45p", "", "Admin Meeting", ""],
	["",	"5",	"4",	"2011",	"2:00p", "3:00p", "Early Program Welcoming Party for Newly Admitted Children", ""],
	["",	"5",	"11",	"2011",	"2:00p", "3:00p", "Early Program Welcoming Party for Newly Admitted Children", ""],
	["",	"5",	"25",	"2011",	"2:00p", "3:00p", "Early Program Welcoming Party for Newly Admitted Children", ""],
	["",	"5",	"3",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"5",	"10",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"5",	"17",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"5",	"24",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"5",	"31",	"2011",	"8:45a", "9:30a", "Adult Yoga", ""],
	["",	"5",	"5",	"2011",	"6:30p", "8:30p", "CFA End-of-year Cocktail Party", ""],
	["",	"5",	"6",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"5",	"27",	"2011",	"8:30", "10:00a", "Child Chat", "St. Monica's Hall"],
	["",	"5",	"7",	"2011",	"10:00a", "", "First Communion", ""],
	["",	"5",	"22",	"2012",	"3:45p", "5:15p", "Full Staff Meeting", ""],
	["",	"5",	"10",	"2011",	"6:30p", "8:30p", "FACES Workshop", "Childcare Available"],
	["",	"5",	"13",	"2011",	"", "", "Elementary and early Program Reports Due to Division Heads", ""],
	["",	"5",	"15",	"2012",	"12:00", "5:00p", "Family Conferences", "School Open Half Day 12 pm dismissal"],
	["",	"5",	"16",	"2012",	"8:00a", "5:00p", "School Closed/Family Conferences", "Childcare Available"],
	["",	"6",	"01",	"2012",	"", "", "Early Program, Beginners & Kindergarten Observations End", ""],
	["",	"5",	"19",	"2010",	"8:45p", "10:00p", "CFA General Meeting (St. Monica's Hall)", "Childcare Available"],
	["",	"5",	"20",	"2011",	"9:00a", "10:00a", "Elementary Music Show", "(St. Monica's Hall, enter 79th St.)"],
	["",	"5",	"21",	"2012",	"", "", "Open Classroom for Early Program and Beginners Movement", "Schedule TBA"],
	["",	"5",	"22",	"2012",	"", "", "Open Classroom for Early Program and Beginners Movement", "Schedule TBA"],
	["",	"5",	"23",	"2012",	"", "", "Open Classroom for Early Program and Beginners Movement", "Schedule TBA"],
	["",	"5",	"24",	"2012",	"", "", "Open Classroom for Early Program and Beginners Movement", "Schedule TBA"],
	["",	"5",	"25",	"2012",	"", "", "Open Classroom for Early Program and Beginners Movement", "Schedule TBA"],
	["",	"5",	"21",	"2012",	"", "", "ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"22",	"2012",	"", "", "ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"23",	"2012",	"", "", "ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"24",	"2012",	"", "", "ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"25",	"2012",	"", "", "ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"24",	"2011",	"", "", "SAT & ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"25",	"2011",	"", "", "SAT & ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"26",	"2011",	"", "", "SAT & ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"27",	"2011",	"", "", "SAT & ERB Testing for Lower and Middle Level", ""],
	["",	"5",	"25",	"2011",	"6:30p", "8:00p", "New Family Reception", ""],
	["",	"5",	"27",	"2011",	"", "", "CFA Spring Bake Sale", ""],
	["",	"5",	"27",	"2011",	"9:00a", "10:00a", "Early Program Movement Assembly", "(Lunchroom)"],
	["",	"5",	"30",	"2011",	"", "", "School Closed", "Memorial Day"],
	["",	"6",	"1",	"2012",	"8:45a", "10:00a", "Child Chat", ""],
	["",	"6",	"8",	"2012",	"8:45a", "10:00a", "Child Chat", ""],
	["",	"6",	"2",	"2011",	"9:30a", "", "Upper Level Musical for Children", "Lobby"],
	["",	"6",	"8",	"2012",	"9:00a", "9:30a", "Caedmon Chorus Performs for EP, K", ""],
	["",	"6",	"8",	"2012",	"9:45a", "10:15a", "Caedmon Chorus Performs for LL, ML & UL", ""],
	["",	"6",	"8",	"2012",	"", "", "Afterschool Spring Term Ends", ""],
	["",	"6",	"8",	"2012",	"2:15p", "", "Upper Level Musical for Parents", "Lobby"],
	["",	"6",	"8",	"2011",	"", "", "Early Program Day in the Park", ""],
	["",	"6",	"14",	"2012",	"", "", "LAST DAY OF SCHOOL FOR EARLY PROGRAM AND BEGINNERS", "Usual dismissal times"],
	["",	"6",	"14",	"2012",	"", "", "Elementary Field Day", ""],
	["",	"6",	"10",	"2011",	"9:30a", "10:30a", "Closing Exercises for Upper Level Graduates", "(St. Monica's Hall, enter 79th St.)"],
	["",	"6",	"15",	"2012",	"", "", "LAST DAY OF SCHOOL FOR ELEMENTARY", "10:30a All-School Dismissal"],
	["",	"6",	"18",	"2012",	"", "", "Discovery Camp Staff Orientation", ""],
	["",	"6",	"19",	"2012",	"", "", "Discovery Camp Staff Orientation", ""],
	["",	"6",	"20",	"2012",	"", "", "Discovery Camp Staff Orientation", ""],
	["",	"6",	"21",	"2012",	"", "", "Discovery Camp Staff Orientation", ""],
	["",	"6",	"22",	"2012",	"", "", "Discovery Camp  Open House for Campers and Families", ""],
	["",	"6",	"25",	"2012",	"", "", "Discovery Camp  Begins", ""],
	["",	"6",	"13",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"6",	"14",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"6",	"15",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"6",	"16",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"6",	"17",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"7",	"29",	"2011",	"", "", "Discovery Camp Ends", ""],
	["",	"8",	"29",	"2011",	"", "", "Summer Music Program Ends", ""],
	["",	"8",	"15",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"16",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"17",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"18",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"19",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"22",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"23",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"24",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"25",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"],
	["",	"8",	"26",	"2011",	"8:30a", "3:30p", "No Frills Vacation Camp", "Contact Andrew Kagan, ext. 316"]


	

	// PLEASE OMIT THE FINAL COMMA after the ] from the last line above 
	//unless you are going to add another event at this time.
	//If Calendar is not working, check commas
);





