// 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",	""],
	["F",	"1",	"3",	"2",	"1:00 AM",	"12:59 PM",	"Martin Luther King Day",	""],
	["Y",	"2",	"2",	"2005",	"1:00 AM",	"12:59 PM",	"Groundhog Day",	""],
	["",	"2",	"21",	"2009",	"4:30 PM",	" ",	"MARDI GRAS",	"Appreciation dinner and entertainment"],
	["",	"2",	"6",	"2008",	" ",	" ",	"Ash Wednesday",	"Masses at 8AM, 12:10PM, 7PM"],
	["Y",	"2",	"14",	"2005",	"1:00 AM",	"12:59 PM",	"Valentine's Day",	""],
	["F",	"2",	"3",	"2",	"1:00 AM",	"12:59 PM",	"President's Day",	""],
	["F",	"3",	"0",	"0",	"",	"",	"EASTER SUNDAY",	""],
	["",	"3",	"2",	"2009",	"7:00 PM",	"8:00 PM",	"PARISH MISSION FOR LENT - Day 1 of 3",	"Retreat Preacher: Fr. Stephen Marcoux. Theme: JESUS... KNOCK ME OFF MY HIGH HORSE - Reflections on St. Paul"],
	["",	"3",	"3",	"2009",	"7:00 PM",	"8:00 PM",	"PARISH MISSION FOR LENT - Day 2 of 3",	"Retreat Preacher: Fr. Stephen Marcoux. "],
	["",	"3",	"4",	"2009",	"7:00 PM",	"8:00 PM",	"PARISH MISSION FOR LENT - Day 3 of 3",	"Retreat Preacher: Fr. Stephen Marcoux. "],
	["",	"3",	"7",	"2009",	"5:30 PM",	"",	"ST. PATRICK DAY DINNER",	"Dinner and Entertainment in the Hall"],
	["Y",	"3",	"17",	"2005",	"1:00 AM",	"12:59 PM",	"St. Patrick's Day",	""],
	["",	"3",	"20",	"2008",	"7:00 PM",	"",	"HOLY THURSDAY",	"Celebration of the Lord's Supper"],
	["",	"3",	"21",	"2008",	"3:00 PM",	"",	"GOOD FRIDAY",	"Outdoor Way of the Cross"],
	["",	"3",	"21",	"2008",	"7:00 PM",	"",	"",	"The Lord's Passion and Holy Communion"],
	["Y",	"4",	"1",	"2005",	"1:00 AM",	"12:59 PM",	"April Fool's Day",	""],
	["",	"4",	"25",	"2009",	"4:30 PM",	"",	"FR. DICK’s 50th ORDINATION ANNIVERSARY",	"A reception will follow in the Parish Hall for all parishioners."],
	["F",	"5",	"2",	"1",	"1:00 AM",	"12:59 PM",	"Mother's Day",	""],
	["F",	"5",	"3",	"7",	"1:00 AM",	"12:59 PM",	"Armed Forces Day",	""],
	["F",	"5",	"4",	"2",	"1:00 AM",	"12:59 PM",	"Memorial Day",	""],
	["Y",	"6",	"14",	"2005",	"1:00 AM",	"12:59 PM",	"Flag Day",	""],
	["F",	"6",	"3",	"1",	"1:00 AM",	"12:59 PM",	"Father's Day",	""],
	["Y",	"7",	"4",	"2005",	"1:00 AM",	"12:59 PM",	"Independence Day",	""],
	["F",	"9",	"1",	"2",	"1:00 AM",	"12:59 PM",	"Labor Day",	""],
	["",	"9",	"13",	"2009",	"12:00 PM",	"4:00 PM",	"PARISH PICNIC",	"To be held at CCBA."],
	["F",	"10",	"2",	"2",	"1:00 AM",	"12:59 PM",	"Columbus' Day",	""],
	["",	"10",	"21",	"2007",	"9:00 AM",	"10:15 AM",	"Religious Ed K-8, School",	"Propagation of the Faith Collection."],
	["",	"10",	"22",	"2007",	"7:00 PM",	"8:30 PM",	"RCIA",	"6:30 PM Church Hall."],
	["",	"10",	"23",	"2007",	"3:30 PM",	"3:45 PM",	"Youth Choir",	"Church"],
	["",	"10",	"23",	"2007",	"5:00 PM",	"5:45 PM",	"Community Dinner",	""],
	["",	"10",	"23",	"2007",	"5:30 PM",	"6:30 PM",	"Choir Practice",	""],
	["",	"10",	"24",	"2007",	"0:00 PM",	"0:00 PM",	"Basic Leadership Course",	""],
	["",	"10",	"25",	"2007",	"5:00 PM",	"5:45 PM",	"Community Dinner",	""],
	["",	"10",	"28",	"2007",	"9:00 AM",	"10:15 AM",	"Religious Ed K-8, School",	"Propagation of the Faith Collection."],
	["",	"10",	"28",	"2007",	"5:30 PM",	"6:00 PM",	"Post Confirmation", "K of C"],
	["Y",	"10",	"31",	"2005",	"1:00 AM",	"12:59 PM",	"Halloween",	""],
	["",	"11",	"9",	"2007",	"6:00 PM",	"9:00 PM",	"Holiday Shopping",	"Mount Royal Academy, Sunapee NH"],
	["Y",	"11",	"11",	"2005",	"1:00 AM",	"12:59 PM",	"Veteran's Day",	""],
	["F",	"11",	"4",	"5",	"1:00 AM",	"12:59 PM",	"Thanksgiving",	""],
	["",	"11",	"26",	"2009",	"12:00 PM",	"",	"Thanksgiving Dinner",	"To be held in Church Hall."],
	["",	"12",	"7",	"2008",	"4:00 PM",	"",	"Christmas Concert Sunday",	"By the Eastmanaires, under the direction of Joanie Whiting"],
	["",	"12",	"10",	"2008",	"6:30 PM",	"",	"Advent Reflection with Fr. Richard Delisle", "Sacrament of Reconciliation will follow this presentation"],
	["",	"12",	"24",	"2008",	"4:00 PM",	"",	"Living Crib",	"Children's Liturgy"],
	["",	"12",	"24",	"2008",	"6:00 PM",	"",	"Mass",	"Choir"], 
	["",	"12",	"24",	"2008",	"11:30 PM",	"",	"Concert",	""],
	["",	"12",	"24",	"2008",	"12:00 AM",	"",	"Mass",	"Contemporary Music"],
	["",	"12",	"25",	"2008",	"10:00 AM",	"",	"Christmas Mass",	""],
	["",	"12",	"15",	"2009",	"3:30 PM",	"4:30 PM",	"Youth Choir Practice",	"Sacred Heart Church"],
	["",	"12",	"22",	"2009",	"3:30 PM",	"4:30 PM",	"Youth Choir Practice",	"Sacred Heart Church"],
	["",	"12",	"20",	"2009",	"9:00 AM",	"10:00 AM",	"Living Crib Rehearsal 1, Hanover Street School",	"All children are welcome."],
	["",	"12",	"20",	"2009",	"6:30 PM",	"7:30 PM",	"Las Posadas",	"All are welcome to join Mary and Joseph as they seek lodging. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"12",	"21",	"2009",	"6:30 PM",	"7:30 PM",	"Las Posadas",	"All are welcome to join Mary and Joseph as they seek lodging. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"12",	"22",	"2009",	"6:30 PM",	"7:30 PM",	"Las Posadas concludes with a Fiesta in the church hall.",	"All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"12",	"23",	"2009",	"3:00 PM",	"5:00 PM",	"Living Crib Rehearsal 2", "Sacred Heart Church Hall"],
	["",	"12",	"24",	"2009",	"4:00 PM",	"",	"Living Crib",	"Children's Liturgy"],
	["",	"12",	"24",	"2009",	"6:00 PM",	"",	"Mass",	""],
	["",	"12",	"24",	"2009",	"11:30 PM",	"",	"Concert",	""],
	["",	"12",	"24",	"2009",	"12:00 AM",	"",	"Mass",	"Choir"],
	["Y",	"12",	"25",	"2009",	"1:00 AM",	"12:59 PM",	"Christmas",	""],
	["",	"12",	"25",	"2009",	"10:00 AM",	"",	"Christmas Mass",	""],
	["",	"12",	"25",	"2009",	"12:00 PM",	"",	"Christmas Dinner",	"To be held in Church Hall. All are welcome. Free of charge."],
	["",	"07",	"12",	"2010",	"9:00 AM",	"12:00 PM",	"VBS",	"Sacred Heart Church Hall", "All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"07",	"13",	"2010",	"9:00 AM",	"12:00 PM",	"VBS",	"Sacred Heart Church Hall", "All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"07",	"14",	"2010",	"9:00 AM",	"12:00 PM",	"VBS",	"Sacred Heart Church Hall", "All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"07",	"15",	"2010",	"9:00 AM",	"12:00 PM",	"VBS",	"Sacred Heart Church Hall", "All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."],
	["",	"07",	"16",	"2010",	"9:00 AM",	"12:00 PM",	"VBS",	"Sacred Heart Church Hall", "All are welcome. Call Amy Cheevers 603-448-4046 or email achvs2002@yahoo.com."]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);