// 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(
	["",	"9",	"26",	"2008",	"-",	"-",	"The Pestanas",	"Arrival in Alvor."],
	["",	"9",	"1",	"2008",	"-",	"-",	"A.S.S. 2008",	"The Alvor Sports and Social Club 2008 gathering."],
	["",	"10",	"1",	"2008",	"-",	"-",	"10 pin Bowling!",	"Marco's team start their challenge for the new season's title."],
	["",	"10",	"31",	"2008",	"-",	"-",	"World Super Bike Championships",	"From the 31st October until 2nd November \nThe Portugal Round of the Championship \nHeld in Portimao, at the new Algarve Autodrome \n( www.autodromodoalgarve.com )"],
	["",	"12",	"4",	"2008",	"-",	"-",	"Site Update",	"Photos from the Superbike weekend. \nSome more of our own and guests photographs. \nA general 'tidy up' for Christmas."],
	["",	"11",	"1",	"2008",	"-",	"-",	"End of Season",	"Sorry, Marcos is now closed until next year. \nMany thanks to all our guests who visited in 2008, we look forward to seeing you all again 2009. \nThe website will continue to be updated with our recipes, and any other news we have for you."],
	["",	"12",	"8",	"2008",	"-",	"-",	"Site Update",	"December's Recipe added... \nChicken Liver Pate."],
	["Y",	"1",	"1",	"2009",	"-",	"-",	"New Year's Day",	"A Happy and a 'Credit Crunch free' New Year to you all."],
	["",	"1",	"5",	"2009",	"-",	"-",	"Site Update",	"January's Recipe added... \nTurkey & Apricot Bake."],
	["",	"1",	"27",	"2009",	"-",	"-",	"Site Update",	"We started 2009 off with a page of our pics... \nSee the Photo Gallery pages."],
	["",	"2",	"2",	"2009",	"-",	"-",	"Site Update",	"February's Recipe added... \nSpicy Leek & Potato Soup."],
	["F",	"3",	"0",	"0",	"-",	"-",	"Easter",	"Sorry. We're closed today."],
	["",	"3",	"1",	"2009",	"-",	"-",	"Marks Birthday", ""],
	["",	"3",	"7",	"2009",	"-",	"-",	"Jackies Birthday",	"You've got to say Happy Birthday for this one!."],
	["",	"3",	"14",	"2009",	"-",	"-",	"We OPENING for our 2011 season today",	"Were waiting to see you!."],
	["",	"3",	"25",	"2009",	"-",	"-",	"Lisas Birthday", ""],
	["",	"3",	"11",	"2009",	"-",	"-",	"Site Update",	"March's Recipe added... \nMark's Fish Pie."],
	["Y",	"3",	"17",	"2009",	"-",	"-",	"St. Patrick's Day",	""],
	["Y",	"4",	"1",	"2009",	"-",	"-",	"April Fool's Day",	""],
	["",	"5",	"4",	"2009",	"-",	"-",	"P.O.W. Golf Society",	"The golfing lads are back for their annual tour."],
	["",	"6",	"1",	"2009",	"-",	"-",	"Site Update",	"New Motor Racing Pages. \nJune's Recipe published. \nMore photos!."],
	["",	"6",	"6",	"2009",	"-",	"-",	"10 pin Bowling",	"Algarve Winter League Banquet."],
	["",	"7",	"9",	"2009",	"-",	"-",	"Cairnduffs arrive",	"A Warm welcome."],
	["",	"7",	"18",	"2009",	"-",	"-",	"Auntie D and Uncle R",	"Congratulations on your 50th anniversary!"],
	["",	"7",	"23",	"2009",	"-",	"-",	"Xana's 18th Birthday",	"Hoorah, Party time!."],
	["",	"9",	"4",	"2009",	"-",	"-",	"The Alvor Sports and Social club tour begins!",	"Yipee!"],
	["",	"9",	"8",	"2009",	"-",	"-",	"Mr & Mrs Coventry", ""],
	["",	"9",	"14",	"2009",	"-",	"-",	"The Tourists", ""],
	["",	"9",	"20",	"2009",	"-",	"-",	"Jim & Liz", ""],
	["",	"9",	"10",	"2009",	"-",	"-",	"Our website is 1 year old today",	"Thanks everyone for making this a fun site!"],
	["",	"10",	"30",	"2009",	"-",	"-",	"Season's End", ""],
	["",	"12",	"18",	"2009",	"-",	"-",	"Holiday!", "Off to Belfast for the week."],
	["",	"2",	"6",	"2010",	"-",	"-",	"Happy Birthday", "Auntie D!"],
	["",	"3",	"6",	"2010",	"-",	"-",	"2010 Season Start", "Party Day!"],
	["",	"3",	"7",	"2010",	"-",	"-",	"Happy Birthday Jackie!",""],
	["",	"3",	"1",	"2010",	"-",	"-",	"Happy Birthday Marky!", ""],
	["",	"9",	"1",	"2010",	"-",	"-",	"Here come the ASS Club!", ""],
	["",	"9",	"10",	"2010",	"-",	"-",	"Our website is 2 years old today",	"Thanks everyone for continuing to make this a fun site!"],
	["",	"9",	"10",	"2011",	"-",	"-",	"Our website is 3 years old today",	"Thanks everyone for making it possible!"],
	["Y",	"12",	"25",	"2008",	"-",	"-",	"Christmas Day",	"A Merry Christmas to all our guests!\nWe hope to see you again next year"],
	["",	"3",	"1",	"2011",	"-",	"-",	"Marks Birthday", "The BIG 50!"],
	["",	"3",	"7",	"2011",	"-",	"-",	"Jackies Birthday",	"You've got to say Happy Birthday for this one!."],
	["",	"3",	"14",	"2011",	"-",	"-",	"We OPENING for our 2011 season today",	"Were waiting to see you!."],
	["",	"3",	"25",	"2011",	"-",	"-",	"Lisas Birthday", ""],
	["",	"7",	"19",	"2011",	"-",	"-",	"Neil's Birthday", ""]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);





