// 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",	"Office Closed - 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."],
	//---------------------------------------Church Events------------------------------------//
	//----------------------------------------------------------------------------------------//
	//---------------------------------------January------------------------------------------//
	
	["",	"1",	"3",	"2008",	"8:15 AM",	"3:15 PM",	"School Opens",	"School reopens after Christmas recess"],
	["",	"1",	"3",	"2008",	"1:00 PM",	"",	"Staff Christmas Party", "Staff Christmas Party"],
	["",	"1",	"4",	"2008",	"12:00 AM",	"11:59 PM",	"Feast of St. Elizabeth Ann Seton",	"Feast of St. Elizabeth Ann Seton"],
	["",	"1",	"5",	"2008",	"12:00 AM",	"11:59 PM",	"Feast of Epiphany",	"Is a feast to celebrate the shining forth or revelation of God to mankind in human form, in the person of Jesus. "],
	["",	"1",	"6",	"2008",	"12:00 AM",	"11:59 PM",	"Feast of Epiphany",	"Is a feast to celebrate the shining forth or revelation of God to mankind in human form, in the person of Jesus. "],
	["",	"1",	"6",	"2008",	"8:00 AM",	"11:00 AM",	"House Blessings 8 & 11 AM ",	"House Blessings 8 & 11 AM"],
	["",	"1",	"15",	"2008",	"7:00 PM",	"8:30 PM",	"Parish Pastoral council Mtg.",	"Parish Pastoral council Mtg."],
	["",	"1",	"22",	"2008",	"12:00 AM",	"11:59 PM",	"Day of Penance for the Human Person - Pro-Life",	"Day of Penance for the Human Person - Pro-Life"],
	["",	"1",	"28",	"2008",	"12:00 AM",	"11:59 PM",	"Catholic School Week",	"Catholic School Week"],
	["",	"1",	"29",	"2008",	"12:00 AM",	"11:59 PM",	"Catholic School Week",	"Catholic School Week"],
	["",	"1",	"30",	"2008",	"12:00 AM",	"11:59 PM",	"Catholic School Week",	"Catholic School Week"],
	["",	"1",	"31",	"2008",	"12:00 AM",	"11:59 PM",	"Catholic School Week",	"Catholic School Week"],
	//---------------------------------------February-----------------------------------------//
	["",	"2",	"10",	"2008",	"TDA",	"TDA",	"Future Workshops",	"Caring for the Caregiver"],
	["",	"2",	"2",	"2008",	"7:00  PM",	"9:00  PM",	"Parish Appreciation Night",	"Parish Appreciantion Night. Mardi Gras"],
	["",	"2",	"3",	"2008",	"TDA",	"TDA",	"Religous renewal Consecrated Life",	"Religous renewal Consecrated Life"],
	["",	"2",	"6",	"2008",	"",	"",	"Ash Wednesday",	"Ash Wednesday Masses at 8:30 AM & 7:30 PM"],
	["",	"2",	"8",	"2008",	"",	"",	"Mother Lange Awards",	"Mother Lange Awards"],
	["",	"2",	"8",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"2",	"10",	"2008",	"",	"",	"World Day of the sick",	"Anointing after each Mass"],
	["",	"2",	"11",	"2008",	"",	"",	"World Day of the sick",	"World Day of the sick"],
	["",	"2",	"15",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"2",	"17",	"2008",	"12:00 AM",	"11:59 PM",	"Sweatheart Sunday", "Sweatheart Sunday"],
	["",	"1",	"19",	"2008",	"7:00 PM",	"8:30 PM",	"Parish Pastoral council Mtg.",	"Parish Pastoral council Mtg."],
	["",	"2",	"22",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"2",	"27",	"2008",	"9:00 AM",	"",	"School Penance Service",	"School Penance Service"],
	["",	"2",	"29",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	//---------------------------------------March-------------------------------------------//
	["",	"3",	"5",	"2008",	"7:00 PM",	"",	"Lenten Penance",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	["",	"3",	"5",	"2008",	"7:00 PM",	"8:30  PM",	"Stations of the Cross",	"Stations of the Cross"],
	//---------------------------------------April-------------------------------------------//
	//---------------------------------------May--------------------------------------------//
	//---------------------------------------June------------------------------------------//
	["",	"6",	"1",	"2008",	"1:00 AM",	"12:59 PM",	"9th Sunday Ordinary Time",	""],
	["",	"6",	"1",	"2008",	"10:00 AM",	"",	"Begin 10am Mass schedule",	""],
	["",	"6",	"3",	"2008",	"1:00 AM",	"12:59 PM",	"Feast of Charles Lwanga",	""],
	["",	"6",	"7",	"2008",	"5:00 PM",	"",	"5pm Mass",	"Deacon Chris Priestly Ordination in."],
	["",	"6",	"8",	"2008",	"10:00 AM",	"12:59 PM",	"10am Mass",	"Visiting Priest, Fr. Francik, vocation Office."],
	["",	"6",	"13",	"2008",	"1:00 AM",	"12:59 PM",	"Feast of Anthony of Padua",	""],
	["",	"6",	"14",	"2008",	"5:00 PM",	"",	"5pm Mass",	""],
	["",	"6",	"15",	"2008",	"10:00 AM",	"",	"10am Mass",	"11th Sunday in Ordinary Time"],
	["",	"6",	"15",	"2008",	"1:00 AM",	"12:59 PM",	"Father's Day",	"Day of tribute to fathers."],
	["",	"6",	"21",	"2008",	"10:30 AM",	"",	"Senior Luncheon",	""],
	["",	"6",	"21",	"2008",	"5:00 PM",	"",	"5pm Mass",	""],
	["",	"6",	"22",	"2008",	"10:00 AM",	"",	"10 am Mass",	"12th Sunday in Ordinary Time."],
	["",	"6",	"23",	"2008",	"1:00 AM",	"12:59 PM",	"Feast of the Sacred Heart",	""],
	["",	"6",	"24",	"2008",	"1:00 AM",	"12:59 PM",	"Birth of John the Baptist",	""],
	["",	"6",	"28",	"2008",	"5:00 PM",	"",	"5pm Mass",	""],
	["",	"6",	"29",	"2008",	"10:00 AM",	"",	"10am Mass",	"Solemn Feast of Sts. Peter & Paul."],
	["",	"6",	"30",	"2008",	"1:00 AM",	"12:59 PM",	"Pierre Toussaint, saintly Black layman, died, 1853.",	""],
	["",	"6",	"16",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"17",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"18",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"19",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"20",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"21",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"22",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"23",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"24",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	["",	"6",	"25",	"2008",	"1:00 AM",	"12:59 PM",	"France Pilgrimage",	"Parish European pilgramage to visit sacred shrines."],
	//---------------------------------------July------------------------------------------//
	["",	"7",	"5",	"2008",	"5:00 PM",	"",	"5pm Mass",	"Deacon Rubio"],
	["",	"7",	"6",	"2008",	"10:00 AM",	"",	"10am Mass",	"Deacon Rubio"],
	["",	"7",	"12",	"2008",	"5:00 PM",	"",	"5pm Mass",	""],
	["",	"7",	"13",	"2008",	"10:00 AM",	"",	"10am Mass",	"15th Sunday in Ordinary Time"],
	["",	"7",	"19",	"2008",	"5:00 PM",	"",	"5pm Mass",	""],
	["",	"7",	"20",	"2008",	"10:00 AM",	"",	"10am Mass",	"Deacon Presberry."],
	["",	"7",	"26",	"2008",	"5:00 PM",	"",	"5pm Mass",	"Deacon Rubio"],
	["",	"7",	"27",	"2008",	"10:00 AM",	"",	"10am Mass",	"Crab Feast."],
	//---------------------------------------August----------------------------------------//
	//---------------------------------------September------------------------------------//
	["",	"9",	"16",	"2007",	"9:30 AM",	"10:30 PM",	"Future Workshops",	"How to have Hospice help you?"],
		["",	"9",	"2",	"2007",	"10:00 AM",	"1:00 PM",	"Mass on the Grass",	"Annual Paris Mass on the Grass."],
	["",	"9",	"11",	"2007",	"6:30 PM",	"",			"Childrens Choir Practice",	"Childrens Choir Practice."],
	["",	"9",	"12",	"2007",	"6:30 PM",	"",			"Back to School Night",		"Back to School Night."],			
	["",	"9",	"18",	"2007",	"7:00 PM",	"",			"Parish Pastoral council Mtg.",	"Parish Pastoral council Mtg."],
	["Y",	"9",	"23",	"2007",	"12:01 AM",	"11:59 PM",	"Betty Butler's Birthday",	"Celebrating the birth of Mrs. Betty Buttler."],
	["",	"9",	"26",	"2007",	"8:30 PM",	"",			"School Mass",				"School Mass."],
	["",	"9",	"30",	"2007",	"5:30 PM",	"",			"Weddings",					" Holy Matrimony is the sacrament ordained by God for the lifelong union of a man and a woman."],
	//---------------------------------------October--------------------------------------//
	["",	"10",	"7",	"2007",	"TDA",	"TDA",	"Future Workshops",	"Grief and Loss."],
	["F",	"10",	"4",	"2007",	"12:00 AM",	"11:59 PM",	"Feast of St. Francis",	"St. Francis of Assisi, lover of all creation, champion of justice, patron saint of animals and the environment, founded the Franciscan Order."],
	["",	"10",	"7",	"2007",	"12:00 AM",	"11:59 PM",	"Respect Life Sunday",	"Respect Life Sunday."],
	["",	"10",	"16",	"2007",	"7:00 PM",	"8:30 PM",	"Parish Pastoral Council MTG",	"Parish Pastoral Council MTG."],
	["",	"10",	"17",	"2007",	"TDA",	"TDA",	"Staff Retreat in NJ",	"Staff Retreat in NJ."],
	["",	"10",	"18",	"2007",	"TDA",	"TDA",	"Staff Retreat in NJ",	"Staff Retreat in NJ."],
	["",	"10",	"19",	"2007",	"TDA",	"TDA",	"Staff Retreat in NJ",	"Staff Retreat in NJ."],	
	["",	"10",	"21",	"2007",	"TDA",	"TDA",	"Children's Choir at St. Berndarines",	"The Children of the Parish put their vocal skils on display in an uplifting feel good concert."],
	["Y",	"10",	"26",	"2007",	"TDA",	"TDA",	"Barbara's Birthday",	"Celebrating the birth of Mrs. Barbara."],
	//---------------------------------------November------------------------------------//
	["Y",	"11",	"1",	"2007",	"8:30 AM",	"10:00 PM",	"All Saints Mass",	"Day celebrated in the honour of all the saints, known and unknown."],
	["Y",	"11",	"4",	"2007",	"8:30 AM",	"10:00 PM",	"All Soul's Novena",	""],
	["",	"11",	"18",	"2007",	"TDA",	"TDA",	"Children's Choir at St. Berndarines",	"The Children of the Parish put their vocal skils on display in an uplifting feel good concert."],
	["",	"11",	"20",	"2007",	"7:00 PM",	"",			"Parish Pastoral council Mtg.",	"Parish Pastoral council Mtg."],
	["",	"11",	"20",	"2007",	"8:30 PM",	"",			"School Mass",				"School Mass."],
	["Y",	"11",	"22",	"2007",	"10:00 AM",	"12:00 PM",	"ThanksGiving Day Mass",	"Bring a bottle of wine or loaf of bread."],
	["Y",	"11",	"25",	"2007",	"12:00 AM",	"11:59 PM",	"Feast of Christ The King",	"The feast is intended to proclaim in a striking and effective manner Christ's royalty over individuals, families, society, governments, and nations."],
	//---------------------------------------December------------------------------------//
	["",	"12",	"2",	"2007",	"12:00 AM",	"11:59 PM",	"1st Day of Advent ",	"The period of expectant waiting and preparation for the celebration of the Nativity of Christ, also known as the season of Christmas."],
	["",	"12",	"9",	"2007",	"12:00 AM",	"11:59 PM",	"2nd Day of Advent ",	"The period of expectant waiting and preparation for the celebration of the Nativity of Christ, also known as the season of Christmas."],
	["",	"12",	"16",	"2007",	"12:00 AM",	"11:59 PM",	"3rd Day of Advent ",	"The period of expectant waiting and preparation for the celebration of the Nativity of Christ, also known as the season of Christmas."],
	["",	"12",	"23",	"2007",	"12:00 AM",	"11:59 PM",	"4th Day of Advent ",	"The period of expectant waiting and preparation for the celebration of the Nativity of Christ, also known as the season of Christmas."],
	["F",	"12",	"2",	"2007",	"12:00 AM",	"11:59 PM",	"St. Nicholas visits ",	"St. Nicholas visits."],
	["Y",	"12",	"2",	"2007",	"12:00 AM",	"11:59 PM",	"Fr. Pauls Birthday",	"Celebrating the birth of Fr. Paul."],
	["Y",	"12",	"2",	"2007",	"12:00 AM",	"11:59 PM",	"Sr. Loretto's Birthday",	"Celebrating the birth of Sr. Loretto."],
	["Y",	"12",	"6",	"2007",	"12:00 AM",	"11:59 PM",	"Feast of St. Nicholas",	"A Saint who had a reputation for secret gift-giving."],
	["Y",	"12",	"7",	"2007",	"12:00 AM",	"11:59 PM",	"Feast of St. Ambrose",	""],
	["Y",	"12",	"8",	"2007",	"12:00 AM",	"11:59 PM",	"Immaculate Conception",	"the conception of Mary, the mother of Jesus without any stain of original sin, in her mother's womb: the dogma thus says that, from the first moment of her existence, she was preserved by God from the lack of sanctifying grace that afflicts mankind, and that she was instead filled with divine grace. "],
	["Y",	"12",	"15",	"2007",	"",	"",	"Anointing of the Sick after masses",	"The anointing of the sick is administered to bring spiritual and even physical strength during an illness."],
	["Y",	"12",	"16",	"2007",	"",	"",	"Anointing of the Sick after masses",	"The anointing of the sick is administered to bring spiritual and even physical strength during an illness."],
	["Y",	"12",	"16",	"2007",	"",	"",	"Confession",	"The method given by Christ to the Roman Catholic Church by which individual men and women may confess sins committed after baptism and have them absolved by a priest."],
	["",	"12",	"18",	"2007",	"7:00 PM",	"",			"Parish Pastoral council Mtg.",	"Parish Pastoral council Mtg."],
	["",	"12",	"21",	"2007",	"8:30 PM",	"",			"School Mass",			"School Mass."],
	["",	"12",	"21",	"2007",	"3:00 PM",	"",			"School Closes",		"School closed until the 3rd of January."],
	["Y",	"12",	"24",	"2007",	"9:00 PM",	"",	"Christmas Eve Mass",			"Christmas Eve."],
	["",	"12",	"25",	"2007",	"10:00 AM",	"",	"Christmas Day Mass",			"The day celebrating the birth of Christ."],
	["",	"12",	"29",	"2007",	"5:00 PM",	"",	"Feast of the Holy Family",		"A celebration in honor of Jesus of Nazareth, his mother, the Blessed Virgin Mary, and his foster father, Saint Joseph."],
	["",	"12",	"30",	"2007",	"10:00 AM",	"",	"Feast of the Holy Family",		"A celebration in honor of Jesus of Nazareth, his mother, the Blessed Virgin Mary, and his foster father, Saint Joseph."],
	["",	"12",	"31",	"2007",	"9:00 PM",	"",	"New Year Eve Mass",			"Mass to welcome the coming of a new year."]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);





