// This is the Database of Upcoming Events
//
// 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
// 
//  "L" indicates regular lesson (same as weekly)
//  "V" indicates vacation (StartTime and EndTime indicate period in days)
//
// 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","",
//      [ type, month, dayofweek, year, startday, endday, description]
events = new Array(

// regular lessons 2010
//	["L",	"",	"3",	"2010", "19:15",	"21:00",	"volwassenen",	"EDE."],

	["L",	"",	"4",	"2010",	"19:15",	"21:00",	"volwassenen",	"LEUSDEN."],
	["L",	"",	"6",	"2010",	"15:45",	"17:00",	"kinderAikido",	"LEUSDEN."],
	["L",	"",	"6",	"2010",	"19:15",	"21:00",	"volwassenen",	"LEUSDEN."],

// regular lessons 2009
	
	
	["L",	"",	"6",	"2009",	"15:45",	"17:00",	"kinderAikido",	"LEUSDEN."],

	["L",	"",	"4",	"2009",	"19:15",	"21:00",	"volwassenen",	"LEUSDEN."],
	["L",	"",	"6",	"2009",	"19:15",	"21:00",	"volwassenen",	"LEUSDEN."],

// vacation 2010
  ["V", "5",  "", "2010", "14", "14", "vakantie", ""],
  ["V", "5",  "", "2010", "12", "12", "vakantie", ""],
  ["V", "5",  "", "2010", "7", "7", "vakantie", ""],
  ["V", "5",  "", "2010", "5", "5", "vakantie", ""],

  ["V", "4",  "", "2010", "30", "30", "vakantie", ""],

  ["V", "4",  "", "2010", "2", "2", "vakantie", ""],

  ["V", "2",  "", "2010", "26", "26", "vakantie", ""],
  ["V", "2",  "", "2010", "24", "24", "vakantie", ""],


// vacation 2009
  ["V", "1",  "", "2010", "1",  "1",  "Kerstvakantie", ""],
  ["V", "12", "", "2009", "30", "30", "Kerstvakantie", ""],
  ["V", "12", "", "2009", "25", "25", "Kerstvakantie", ""],
  ["V", "12", "", "2009", "23", "23", "Kerstvakantie", ""],

  ["V", "10",  "", "2009", "23", "23", "vakantie", ""],
  ["V", "10",  "", "2009", "21", "21", "vakantie", ""],


  ["V", "8",  "", "2009", "1",  "25", "zomervakantie", ""],
  ["V", "7",  "", "2009", "11", "31", "zomervakantie", ""],
  ["V", "5",  "", "2009", "22", "22", "meivakantie",""],
  ["V", "5",  "", "2009", "1",  "1",  "meivakantie",""],
  ["V", "4",  "", "2009", "29", "29", "meivakantie",""],
  ["V", "4",  "", "2009", "10", "10", "goede vrijdag",""],

  ["V", "2",  "", "2009", "20", "20", "vakantie", ""],
  ["V", "2",  "", "2009", "18", "18", "vakantie", ""],
  ["V", "1",  "", "2009", "2",  "2",  "Kerstvakantie", ""],


// regular lessons 2008
	["L",	"",	"6",	"2008",	"15:45",	"17:00",	"kinderAikido",	"Lijsterbeslaan."],

	["L",	"",	"4",	"2008",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],
	["L",	"",	"6",	"2008",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],
// vacation 2008
  ["V",	"12",	"",	"2008",	"31",	"31",	"Kerstvakantie", ""],
  ["V", "12", "", "2008", "26", "26", "Kerstvakantie", ""],
  ["V", "12", "", "2008", "24", "24", "Kerstvakantie", ""],


  ["V", "10",  "", "2008", "15",  "15", "Herfstvakantie", ""],
  ["V", "10",  "", "2008", "17",  "17", "Herfstvakantie", ""],


	["V",	"8",	"",	"2008",	"1",	"26",	"zomervakantie", ""],
	["V",	"7",	"",	"2008",	"19",	"31",	"zomervakantie", ""],
	["V",	"5",	"",	"2008",	"1",	"9",	"meivakantie",""],
	["V",	"4",	"",	"2008",	"26",	"31",	"meivakantie",""],
	["V",	"4",	"",	"2008",	"30",	"30",	"Koninginnedag",""],

	["V",	"3",	"",	"2008",	"21",	"21",	"vakantie", ""],
	["V",	"2",	"",	"2008",	"29",	"29",	"vakantie", ""],
	["V",	"2",	"",	"2008",	"27",	"27",	"vakantie", ""],
	["V",	"1",	"",	"2008",	"1",	"8",	"Kerstvakantie", ""],

// vacation 2007
	["V",	"12",	"",	"2007",	"20",	"31",	"Kerstvakantie", ""],

	["V",	"8",	"",	"2007",	"1",	"31",	"zomervakantie", ""],
	["V",	"7",	"",	"2007",	"21",	"31",	"zomervakantie", ""],
	["V",	"5",	"",	"2007",	"15",	"18",	"vakantie", ""],
	["V",	"5",	"",	"2007",	"1",	"4",	"paasvakantie", ""],
	["V",	"4",	"",	"2007",	"6",	"6",	"goede vrijdag", ""],
	["V",	"2",	"",	"2007",	"17",	"27",	"vakantie", ""],
	["V",	"1",	"",	"2007",	"1",	"9",	"Kerstvakantie", ""],
// vacation 2006
	["V",	"12",	"",	"2006",	"23",	"31",	"Kerstvakantie",	""],
// regular lessons 2007
	["L",	"",	"6",	"2007",	"15:45",	"17:00",	"kinderAikido",	"Lijsterbeslaan."],
// extra kinder lessen februari en maart tbv Sportpas
	["",	"2",	"23",	"2007",	"16:45",	"18:00",	"kinderAikido",	"extra les."],
	["",	"3",	"2",	"2007",	"16:45",	"18:00",	"kinderAikido",	"extra les."],
	["",	"3",	"9",	"2007",	"16:45",	"18:00",	"kinderAikido",	"extra les."],
	["",	"3",	"16",	"2007",	"16:45",	"18:00",	"kinderAikido",	"extra les."],

	["L",	"",	"4",	"2007",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],
	["L",	"",	"6",	"2007",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],
// regular lessons 2006
	["L",	"",	"4",	"2006",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],
	["L",	"",	"6",	"2006",	"19:15",	"21:00",	"volwassenen",	"Lijsterbeslaan."],

// EVENTS

	["",	"10",	"13",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
	["",	"10",	"20",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
	["",	"10",	"27",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],

 	["",	"11",	"3",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"11",	"10",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"11",	"17",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"11",	"24",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],

 	["",	"12",	"1",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"12",	"8",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"12",	"15",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],
 	["",	"12",	"22",	"2009",	"19:15",	"21:00",	"volwassenen",	"EDE."],

// stage Bodegraven oktober 2009
  ["",  "10",  "9", "2009", "20:00",  "22:00",  "Stage Alain Peyrache", "Bodegraven(ovb)."],
  ["",  "10", "10", "2009", "14:00",  "17:00",  "Stage Alain Peyrache", "Bodegraven(ovb)."],
  ["",  "10", "11", "2009", "10:00",  "13:00",  "Stage Alain Peyrache", "Bodegraven(ovb)."],


// stage Amsterdam mei 2009
  ["",  "5",  "8", "2009", "20:00",  "22:00",  "Stage Alain Peyrache", "Waddinxveen."],
  ["",  "5",  "9", "2009", "14:00",  "17:00",  "Stage Alain Peyrache", "Gouda."],
  ["",  "5", "10", "2009", "10:00",  "13:00",  "Stage Alain Peyrache", "Gouda."],

// stage Erpe Mere januari 2009
  ["",  "1", "10", "2009", "10:30",  "12:00",  "Stage Alain Peyrache", "Uccle (B)."],
  ["",  "1", "10", "2009", "15:00",  "18:00",  "Stage Alain Peyrache", "Saint Gilles (B)."],
  ["",  "1", "11", "2009", "10:00",  "13:00",  "Stage Alain Peyrache", "Erpe-Mere (B)."],

// stage Parijs november 2008
  ["",  "11", "8", "2008", "16:00",  "19:00",  "Stage Alain Peyrache", "Parijs (Fr)."],
  ["",  "11", "9", "2008", "09:00",  "12:00",  "Stage Alain Peyrache", "Parijs (Fr)."],


// stage Bodegraven oktober 2008
	["",	"10",	"10",	"2008",	"20:00",	"22:00",	"Stage Alain Peyrache",	"Bodegraven."],
	["",	"10",	"11",	"2008",	"10:00",	"12:00",	"Stage Alain Peyrache",	"Sneek."],
	["",	"10",	"11",	"2008",	"14:00",	"17:00",	"Stage Alain Peyrache",	"Sneek."],
	["",	"10",	"12",	"2008",	"10:00",	"13:00",	"Stage Alain Peyrache",	"Sneek."],


// stage Vieux Boucau 2009 Alain
  ["",  "8",  "16", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],
  ["",  "8",  "17", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],
  ["",  "8",  "18", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],
  ["",  "8",  "19", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],
  ["",  "8",  "20", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],
  ["",  "8",  "21", "2009", "09:00",  "12:00",  "Stage Alain Peyrache", "Vieux Boucau(Fr)."],


// stage Vieux Boucau 2008 Alain
	["",	"8",	"17",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"18",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"19",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"20",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"21",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"22",	"2008",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],

// stage Vieux Boucau 2007 Alain
	["",	"8",	"12",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"13",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"14",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"15",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"16",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],
	["",	"8",	"17",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Vieux Boucau(Fr)."],

// stage Meze 2007 Alain
	["",	"8",	"5",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],
	["",	"8",	"6",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],
	["",	"8",	"7",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],
	["",	"8",	"8",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],
	["",	"8",	"9",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],
	["",	"8",	"10",	"2007",	"09:00",	"12:00",	"Stage Alain Peyrache",	"Meze(Fr)."],

// stage Alphen a/d Rijn april 2007 Alain
	["",	"4",	"27",	"2007",	"20:00",	"22:00",	"Stage Alain Peyrache",	"Alphen a/d Rijn (zie ook nieuws)."],
	["",	"4",	"28",	"2007",	"14:00",	"17:00",	"Stage Alain Peyrache",	"Alphen a/d Rijn (zie ook nieuws)."],
	["",	"4",	"29",	"2007",	"10:00",	"13:00",	"Stage Alain Peyrache",	"Alphen a/d Rijn (zie ook nieuws)."],

// stage Bodegraven februari 2007 Andre
	["",	"2",	"16",	"2007",	"20:00",	"22:00",	"Stage Andre Bouillon",	"Waddinxveen."],
	["",	"2",	"17",	"2007",	"10:00",	"12:00",	"Stage Andre Bouillon",	"Bodegraven."],
	["",	"2",	"17",	"2007",	"14:30",	"16:30",	"Stage Andre Bouillon",	"Bodegraven."],

// stage Belgie december 2006 Alain
	["",	"12",	"9",	"2006",	"15:00",	"18:00",	"Stage Alain Peyrache",	"Brussel (Jonathan)."],
	["",	"12",	"10",	"2006",	"10:00",	"13:00",	"Stage Alain Peyrache",	"Erpe Mere (Dries)."],

	["",	"11",	"18",	"2006",	"10:00 PM",	"13:00 PM",	"Stage Alain Peyrache",	"Amsterdam."],
// special
	["",	"10",	"6",	"2009",	"19:15",	"21:00",	"EDE: Eerste les seizoen 2009",	""],
	
	
	["",	"8",	"26",	"2009",	"19:15",	"21:00",	"Eerste les seizoen 2009",	""],
	["",	"8",	"28",	"2009",	"15:45",	"17:00",	"Eerste kinderles seizoen 2009",	""],


  ["",  "7",  "10", "2009", "19:15",  "21:00",  "Laatste vr les 2009 volwassenen", ""],
  ["",  "7",  "10", "2009", "15:45",  "17:00",  "Laatste vr les 2009 kinderen", ""],
  ["",  "7",  "8",  "2009", "19:15",  "21:00",  "Laatste wo les 2009 volwassenen", ""],
  ["",  "1",  "7",  "2009", "19:15",  "21:00",  "Eerste les nieuwe jaar", ""],
  ["",  "12", "19", "2008", "19:15",  "21:00",  "Laatste les 2008", ""],

	["",	"8",	"29",	"2008",	"15:45",	"17:00",	"Eerste kinderles seizoen 2008",	""],
	["",	"8",	"27",	"2008",	"19:15",	"21:00",	"Eerste les seizoen 2008",	""],
	["",	"7",	"18",	"2008",	"19:15",	"21:00",	"Laatste les seizoen 2008",	""],

	["",	"7",	"17",	"2007",	"19:15",	"21:00",	"Laatste les seizoen 2007",	""],
	["",	"1",	"9",	"2008",	"19:15",	"21:00",	"Eerste les nieuwe jaar",	""],
	["",	"12",	"19",	"2007",	"19:15",	"21:00",	"Laatste les 2007",	""],

	["",	"9",	"7",	"2007",	"15:45",	"17:00",	"Eerste kinderles seizoen 2007",	""],
	["",	"9",	"5",	"2007",	"19:15",	"21:00",	"Eerste les seizoen 2007",	""],

	["",	"7",	"20",	"2007",	"19:15",	"21:00",	"Laatste les seizoen 2006",	""],
	["",	"1",	"12",	"2007",	"15:45",	"17:00",	"Eerste les kinder Aikido",	""],
	["",	"1",	"10",	"2007",	"19:15",	"21:00",	"Eerste les nieuwe jaar",	""],
	["",	"12",	"22",	"2006",	"19:15",	"21:00",	"Laatste les 2006",	""],
// holiday
	["Y",	"1",	"1",	"2006",	"",	"",	"Nieuwjaarsdag",	""],
	["Y",	"12",	"25",	"2006",	"",	"",	"Kerst",	"Eerste Kerstdag"],
	["Y",	"12",	"26",	"2006",	"",	"",	"Kerst",	"Tweede Kerstdag"],
  ["Y", "4",  "30", "2008", "", "", "","Koninginnedag"],
	["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",	"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",	"6",	"3",	"1",	"1:00 AM",	"12:59 PM",	"Father's Day",	"Honors all Fathers and fatherhood."],
	["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."],
	["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'."]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);




