// 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=Monday, 2=Tuesday, 3=Wednesday, 4=Thurday, 5=Friday, 6=Saturday, 7=Sunday
//	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(
// Yearly Events
	["Y",	"1",	"1",	"2010",	"1:00 AM",	"12:59 PM",	"New Year's Day",	"New Year's Day is the first day of the new year. On the modern Gregorian calendar, it is celebrated on January 1, as it was also in ancient Rome (though other dates were also used in Rome). In all countries using the Gregorian calendar as their main calendar, except for Israel, it is a public holiday, often celebrated with fireworks at the stroke of midnight as the new year starts. January 1 on the Julian calendar corresponds to January 14 on the Gregorian calendar, and it is on that date that followers of some of the Eastern Orthodox churches celebrate the New Year."],
	["Y",	"1",	"26",	"2010",	"1:00 AM",	"12:59 PM",	"Australia Day",	"On Australia Day we come together as a nation to celebrate what's great about Australia and being Australian. It's the day to reflect on what we have achieved and what we can be proud of in our great nation. It's the day for us to re-commit to making Australia an even better place for the future."],
	["F",	"3",	"0",	"0",	"1:00 AM",	"12:59 PM",	"Easter",	"Easter is the most important annual religious feast in the Christian liturgical year. According to Christian scripture, Jesus was resurrected from the dead on the third day of his crucifixion. Christians celebrate this resurrection on Easter Day or Easter Sunday (also Resurrection Day or Resurrection Sunday), two days after Good Friday and three days after Maundy Thursday. The chronology of his death and resurrection is variously interpreted to be between 26 and 36 AD"],
	["F",	"3",	"2",	"1",	"1:00 AM",	"12:59 PM",	"Labor Day",	"Labour Day or Labor Day is an annual holiday celebrated all over the world that resulted from the labour union movement, to celebrate the economic and social achievements of workers. The majority of countries celebrate Labour Day on May 1, and it is popularly known as May Day and International Workers' Day, while some celebrate on the first Monday of September. The celebration of Labour Day has its origins in the Eight-hour day movement, which advocated eight hours for work, eight hours for recreation, and eight hours for rest."],
	["Y",	"4",	"1",	"2010",	"1:00 AM",	"12:59 PM",	"April Fool's Day",	"April Fools' Day or All Fools Day is a day celebrated in many countries on April 1. The day is marked by the commission of hoaxes and other practical jokes of varying sophistication on friends, family members, enemies, and neighbors, or sending them on a fool's errand, the aim of which is to embarrass the gullible. Traditionally, in some countries, such as the UK, Australia and South Africa the jokes only last until noon, and someone who plays a trick after noon is called an April Fool.  Elsewhere, such as in Canada, France, Ireland, Italy, Russia, The Netherlands, and the U.S., the jokes last all day."],
	["Y",	"4",	"25",	"2010",	"1:00 AM",	"12:59 PM",	"Anzac Day",	"Anzac Day is a national day of remembrance in Australia and New Zealand, and is commemorated by both countries on 25 April every year to honour members of the Australian and New Zealand Army Corps (ANZAC) who fought at Gallipoli in Turkey during World War I. It now more broadly commemorates all those who died and served in military operations for the country. Anzac Day is also observed in the Cook Islands, Niue, Samoa and Tonga."],
	["",	"4",	"26",	"2010",	"1:00 AM",	"12:59 PM",	"Anzac Day, Public Holiday",	"Monday 26 April substitute for Sunday 25 April."],
	["F",	"6",	"2",	"1",	"1:00 AM",	"12:59 PM",	"Queen's Birthday",	"The Queen's Official Birthday (sometimes known as the Queens Birthday) is celebrated as a public holiday in several Commonwealth countries—usually Commonwealth Realms, although it is also celebrated in Fiji, now a republic. The word Queen in the name of the celebration is replaced by King when appropriate. The exact date of the celebration varies from country to country, and it does not usually mark the real birthday of the sovereign (the current monarch, Queen Elizabeth II, was born on 21 April 1926). Most Commonwealth Realms release a Birthday Honours List at this time."],
	["F",	"11",	"1",	"2",	"1:00 AM",	"12:59 PM",	"Melbourne Cup ",	"The Melbourne Cup is Australia's major Thoroughbred horse race. Billed as The race that stops a nation, it is a race for three-year-olds and over, over a distance of 3,200 metres. It is the richest and most prestigious 'two-mile' handicap in the world, and one of the richest turf races in the world. The event is held at around 3 pm on the first Tuesday in November by the Victoria Racing Club, on the Flemington Racecourse in Melbourne."],
//	["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."],
// Upcoming Events 2008
	["",	"1",	"19",	"2008",	"  ",   "  ","Working Bee",   "   "],
	["",	"1",	"21",	"2008",	"Commencing at 07:30 PM  ",   "  ","Commitee Meeting", "   "],
	["",	"2",	"2",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"2",	"23",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"2",	"6",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"2",	"13",	"2008",	"Commencing at 07:30 PM","   ", "Mid Week Obedience Training",	"  "],
	["",	"2",	"18",	"2008",	"Commencing at 07:30 PM","   ",	"Committee Meeting",	"   "],
	["",	"2",	"20",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"   "],
	["",	"2",	"27",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"3",	"3",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"3",	"8",	"2008",	"   ",	"   ",	"Labour Day Long weekend",	"No Normal Training"],	["",	"3",	"16",	"2008",	"   ",	"   ",	"Weerama Procession",	"Annual Procession where we walk down the main street with our dogs"],
	["",	"3",	"17",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"3",	"21",	"2008",	"   ",	"   ",	"Good Friday",	"    "],
	["",	"3",	"5",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"12",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"3",	"19",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"26",	"2008",	"Commencing at 07:30 PM","to 08:30 PM",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"5",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"4",	"7",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"4",	"19",	"2008",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"4",	"21",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"4",	"26",	"2008",    "   ",	"   ",	"Anzac Day Long weekend",	"No Normal Training"],          
	["",	"4",	"2",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"09",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"16",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"23",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"30",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"3",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"5",	"5",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"5",	"19",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"5",	"7",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"14",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"5",	"21",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"25",	"2008",	"  ",        "  ",         "Spirit of the West Challenge", "  ",      "Spirit of the West Challenge at Geelong ODC",  "  " ],
	["",	"5",	"28",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"14",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"6",	"2",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"6",	"7",	"2008",	"   ",	"   ",	"Queens Birthday Long weekend",	"No Normal Training"],
	["",	"6",	"23",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"6",	"4",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"11",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"18",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"25",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"28",	"2008",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"7",	"5",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"7",	"7",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"7",	"21",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"7",	"26",	"2008",	"   ",	"   ",	"Final Saturday for Renewal of Membership",	"   "],
	["",	"7",	"2",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"9",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"16",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"23",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"30",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  "],
	["",	"7",	"31",	"2008",	"   ",	"   ",	"Last Day for Membership Renewals",	"  "],
	["",	"8",	"9",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"8",	"4",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"8",	"18",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"8",	"6",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"13",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"8",	"20",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"27",	"2008",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"8",	"23",	"2008",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"9",	"6",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"9",	"1",	"2008",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"9",	"22",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"9",	"15",	"2008",	"Commencing at 08:00 PM",	"   ",	"Annual General Meeting",	"   "],
	["",	"9",	"3",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"10",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"9",	"17",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"24",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"10",	"4",	"2008",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day.  This is the last induction for the year."],
	["",	"10",	"6",	"2008",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"10",	"20",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"10",	"1",	"2008",	"Commencing at 07:30 PM",	"   ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"8",	"2008",	"Commencing at 07:30 PM",	"   ",	"Mid Week Obedience Training",	"  "],
	["",	"10",	"15",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"22",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],	
	["",	"10",	"29",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"25",	"2008",	"Commencing with check in at 08:00 AM",	"Competition to commence at 9:00 AM",	"Double Obedience Trial",	"No Normal Trainng."],
	["",	"11",	"01",	"2008",	"   ",	"   ",	"Melbourne Cup weekend",	"No Normal Training/No Induction"],
	["",	"11",	"10",	"2008",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"11",	"17",	"2008",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"11",	"16",	"2008",	"   ",				"   ",	"Close off date for Club Trophy Aplications",	"   "],
	["",	"11",	"29",	"2008",	"Commencing at 01:30 PM",	"   ",	"Junior Presentation and Last Training Day for the Year",	"Awards for our Junior Members fun games for you and your dog"],
	["",	"11",	"5",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"12",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"11",	"19",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"26",	"2008",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"12",	"6",	"2008",	"Commencing at 08:00 PM",	"  ",	"Senior Presentation/Christmas Breakup",	"   " ],
	["",	"12",	"10",	"2008",	"Commencing at 07:00 PM",	"   ","Committee and Instructors Breakup",	"  "],
// Upcoming Events 2009
	["",	"1",	"17",	"2009",	"  ",   "  ","Working Bee",   "   "],
	["",	"1",	"19",	"2009",	"Commencing at 07:30 PM  ",   "  ","Commitee Meeting", "   "],
	["",	"2",	"7",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. BOOKED OUT"],
	["",	"2",	"28",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"2",	"11",	"2009",	"Commencing at 07:30 PM","   ", "Mid Week Obedience Training",	"  "],
	["",	"2",	"16",	"2009",	"Commencing at 07:30 PM","   ",	"Committee Meeting",	"   "],
	["",	"2",	"18",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"   "],
	["",	"2",	"25",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"2",	"17",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"2",	"24",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"3",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"10",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"17",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"24",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"31",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"7",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"14",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"21",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"28",	"2009",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"2",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"3",	"7",	"2009",	"   ",	"   ",	"Labour Day Long weekend",	"No Normal Training"],
	["",	"3",	"29",	"2009",	"   ",	"   ",	"Weerama Procession",	"Annual Procession where we walk down the main street with our dogs"],
	["",	"3",	"16",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"4",	"12",	"2009",	"   ",	"   ",	"Good Friday",	"    "],
	["",	"4",	"11",	"2009",	"   ",	"   ",	"Easter",	"No Normal Training"],
	["",	"3",	"4",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"11",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"3",	"18",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"25",	"2009",	"Commencing at 07:30 PM","to 08:30 PM",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"4",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. "],
	["",	"4",	"6",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"4",	"20",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
        ["",    "4",	"25",   "2009",    "   ",	"   ",	"Anzac Day Long weekend",	"Normal Obedience Training. No Agility Training"],          
	["",	"4",	"1",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"8",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"15",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"22",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"29",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"2",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"5",	"4",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"5",	"18",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"5",	"6",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"13",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"5",	"16",	"2009",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"5",	"20",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
        ["",	"5",	"27",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"13",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. "],
	["",	"6",	"1",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"6",	"6",	"2009",	"   ",	"   ",	"Queens Birthday Long weekend",	"No Normal Training"],
	["",	"6",	"15",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"6",	"3",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"10",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"17",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"24",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"4",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. "],
	["",	"7",	"6",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"7",	"18",	"2009",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"7",	"20",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"7",	"25",	"2009",	"   ",	"   ",	"Final Saturday for Rewal of Membership",	"   "],
	["",	"7",	"1",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"8",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"15",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"22",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"29",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  "],
	["",	"7",	"31",	"2009",	"   ",	"   ",	"Last Day for Membership Renewals",	"  "],
	["",	"8",	"8",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"8",	"3",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"8",	"17",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"8",	"5",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"12",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"8",	"19",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"26",	"2009",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"8",	"29",	"2009",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"9",	"5",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"9",	"7",	"2009",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"9",	"28",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"9",	"21",	"2009",	"Commencing at 08:00 PM",	"   ",	"Annual General Meeting",	"   "],
	["",	"9",	"2",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"9",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"9",	"16",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"23",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid We ek Obedience Training",	"  "],
	["",	"9",	"30",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"3",	"2009",	"   ",	"   ",	"Spirit of the West Challenge (at Werribee) - Cancelled",	"Normal Training"],
	["",	"10",	"5",	"2009",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"10",	"10",	"2009",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day.  This is the last induction for the year."],
	["",	"10",	"19",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"10",	"7",	"2009",	"Commencing at 07:30 PM",	"   ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"14",	"2009",	"Commencing at 07:30 PM",	"   ",	"Mid Week Obedience Training",	"  "],
	["",	"10",	"21",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"28",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],	
	["",	"10",	"6",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"10",	"13",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"10",	"20",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"10",	"27",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"10",	"24",	"2009",	"Commencing with check in at 08:00 AM",	"Competition to commence at 9:00 AM",	"Double Obedience Trial",	"No Normal Trainng."],
	["",	"10",	"31",	"2009",	"   ",	"   ",	"Melbourne Cup weekend",	"No Normal Training/No Induction"],
	["",	"11",	"9",	"2009",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"11",	"16",	"2009",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"11",	"15",	"2009",	"   ",				"   ",	"Close off date for Club Trophy Aplications",	"   "],
	["",	"11",	"28",	"2009",	"Commencing at 01:30 PM",	"   ",	"Junior Presentation and Last Training Day for the Year",	"Awards for our Junior Members fun games for you and your dog"],
	["",	"11",	"4",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"11",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"11",	"18",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"10",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"11",	"17",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"11",	"24",	"2009",	"Commencing at 06:30 PM",	"  ",	"Trial Training",	"  "],	
	["",	"11",	"25",	"2009",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"12",	"5",	"2009",	"Commencing at 07:00 PM",	"  ",	"Senior Presentation/Christmas Breakup",	"   " ],
	["",	"12",	"2",	"2009",	"Commencing at 07:00 PM",	"   ","Committee and Instructors Breakup",	"  "],
// Upcoming Events 2010
// Jan 2010
	["",	"1",	"9",	"2010",	"Commencing at 8:00AM or 8:30AM",	"to 4:30PM or 5:00PM", "Commitee and Instructors First Aid Training",	"   "],
	["",	"1",	"10",	"2010",	"Commencing at 8:00AM or 8:30AM",	"to 4:30PM or 5:00PM", "Commitee and Instructors First Aid Training",	"   "],
	["",	"1",	"30",	"2010",	"  ",   "  ","Working Bee",   "   "],
	["",	"1",	"30",	"2010",	"Commencing after Working Bee",   "  ","Commitee Meeting", "   "],
// Feb 2010
	["",	"2",	"6",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. Now Booked Out."],
	["",	"2",	"8",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"2",	"15",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"2",	"27",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. Now Booked Out."],

	["",	"2",	"10",	"2010",	"Commencing at 07:30 PM","   ", "Mid Week Obedience Training",	"  "],
	["",	"2",	"17",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"   "],
	["",	"2",	"24",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],

	["",	"2",	"9",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"2",	"16",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"2",	"23",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"2",	"30",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
// Mar 2010
	["",	"3",	"1",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"3",	"6",	"2010",	"   ",	"   ",	"Labour Day Long weekend",	"No Normal Training"],
	["",	"3",	"13",	"2010",	"   ",	"   ",	"Weerama",	"   "],
	["",	"3",	"14",	"2010",	"   ",	"   ",	"Weerama",	"   "],
	["",	"3",	"15",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"3",	"21",	"2010",	"10am till 3pm",	"",	"WODC Display at Vet Science Open Day 2010, Melbourne Veterinary Hospital, 250 Princes Highway, Werribee.",	"The Veterinary Science Open Day is an opportunity for future students and the community to go behind the scenes at our state-of-the-art Veterinary Hospital in Werribee. You will have the chance to speak to veterinary staff, join in interactive activities, meet current students and take a tour of our outstanding facilities.  This year's Open Day will be run in conjunction with the Wyndham City Council's annual Pet Fair, making it a great day for future students, families and the wider community.  Course and career advice will be available throughout the day, giving prospective students and their parents the opportunity to learn about the various pathways to the University's new Doctor of Veterinary Medicine graduate program.  Animal lovers can meet some furry visitors and talk to the veterinary exhibitors and community groups to find out more about their special interests."],

	["",	"3",	"3",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"10",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"3",	"17",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"3",	"24",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"3",	"31",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],

	["",	"3",	"2",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"9",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"16",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"23",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"3",	"30",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
// Apr 2010
	["",	"4",	"2",	"2010",	"   ",	"   ",	"Good Friday",	"    "],
	["",	"4",	"3",	"2010",	"   ",	"   ",	"Easter",	"No Normal Training"],
	["",	"4",	"4",	"2010",	"   ",	"   ",	"Daylight Saving End",	"Victoria's period of daylight saving will end on Sunday 4 April 2010. At 3:00am move clocks backward one hour to 2:00am."],
	["",	"4",	"5",	"2010",	"   ",	"   ",	"Easter Monday",	"    "],
	["",	"4",	"10",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. Now Booked Out. Next available Induction Day is on the 1st May 2010."],
	["",	"4",	"12",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"4",	"19",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
        ["",    "4",	"24",   "2010",    "   ",	"   ",	"Anzac Day Long weekend",	"No Normal Training"],          

	["",	"4",	"7",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"14",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"4",	"21",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"4",	"28",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],

	["",	"4",	"6",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"13",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"20",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"4",	"27",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],

// May 2010
	["",	"5",	"1",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. Now Booked Out. Next available Induction Day is on the 5th June 2010."],
	["",	"5",	"3",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"5",	"15",	"2010",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"5",	"17",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],

	["",	"5",	"5",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"5",	"12",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"5",	"19",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
        ["",	"5",	"26",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],

	["",	"5",	"13",	"2010",	"Commencing at 5:PM","Dinner from 6PM to 7PM",	"Pay Night Buffet (PNB) at the Officers Mess - RAAF Base Williams - Wrigley Pde - Laverton ",	"These events provide opportunities to enjoy a family meal at a reasonable price in the historic Laverton Officer’s Mess.  Cost for adults is $15.00 and for children $7.00. Please book at the canteen by Saturday 8th May."],

// Jun 2010
	["",	"6",	"5",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. "],
	["",	"6",	"7",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"6",	"12",	"2010",	"   ",	"   ",	"Queens Birthday Long weekend",	"No Normal Training"],
	["",	"6",	"21",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"6",	"26",	"2010",	"   ",	"   ",	"Spirit of the West Challenge",	"Spirit of the West Challenge at Werribee (WODC)"],

	["",	"6",	"2",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"9",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"16",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"6",	"23",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"6",	"30",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],

	["",	"6",	"1",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"6",	"8",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"6",	"15",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"6",	"22",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"6",	"29",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],

	["",	"6",	"5",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],


// Jul 2010
	["",	"7",	"3",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day. "],
	["",	"7",	"5",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"7",	"19",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"7",	"24",	"2010",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],
	["",	"7",	"31",	"2010",	"   ",	"   ",	"Final Saturday for Renewal of Membership",	"   "],
	["",	"7",	"31",	"2010",	"   ",	"   ",	"Last Day for Membership Renewals",	"  "],

	["",	"7",	"7",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"14",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"7",	"21",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"7",	"28",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],

	["",	"7",	"3",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],

	["",	"7",	"17",	"2010",	"Commencing at 07:00PM",	" ",	"Movie Night at WODC",	"Seating is limited to 50 people and a gold coin donation will cover the expenses.  Bring your own Nibbles or Snacks.  Beverages will be provided at the Snack Bar.  We look forward to seeing you.  Please use the sign up sheet located in the Club Rooms to show how many in your group or family will be attending."],



// Aug 2010
	["",	"8",	"7",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"8",	"9",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"8",	"16",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"8",	"21",	"2010",	"Commencing with check in at 12:30  PM",	"Competition to commence at 1:00 PM",	"Funday",	"Entries taken two week beforehand."],

	["",	"8",	"4",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"11",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],
	["",	"8",	"18",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Agility Training",	"  " ],
	["",	"8",	"25",	"2010",	"Commencing at 07:30 PM","  ",	"Mid Week Obedience Training",	"  "],

	["",	"8",	"7",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],

// Sep 2010
	["",	"9",	"4",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", "Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day."],
	["",	"9",	"6",	"2010",	"   ",	"   ",	"TCC Meeting",	"   "],
	["",	"9",	"20",	"2010",	"Commencing at 08:00 PM",	"   ",	"Annual General Meeting",	"   "],
	["",	"9",	"27",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],

	["",	"9",	"1",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"8",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"9",	"15",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"9",	"22",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"9",	"29",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],

	["",	"9",	"2",	"2010",	"Commencing at 5:PM","Dinner from 6PM to 7PM",	"Pay Night Buffet (PNB) at the Officers Mess - RAAF Base Williams - Wrigley Pde - Laverton",	"These events provide opportunities to enjoy a family meal at a reasonable price in the historic Laverton Officer’s Mess.  Cost for adults is $15.00 and for children $7.00. Please book at the canteen by Saturday 28th August."],
	["",	"9",	"11",	"2010",	"Commencing at 07:00PM",	" ",	"Movie Night at WODC",	"Seating is limited to 50 people and a gold coin donation will cover the expenses.  Bring your own Nibbles or Snacks.  Beverages will be provided at the Snack Bar.  We look forward to seeing you.  Please use the sign up sheet located in the Club Rooms to show how many in your group or family will be attending."],

	["",	"9",	"4",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],

// Oct 2010
	["",	"10",	"2",	"2010",	"Commencing at 12:15 PM Sharp",	"to approximately 01:00 PM", 		"Induction Day",	"The Day for New Members to join the club. Please remember you must bring your dogs Vaccination Certificate with you and leave your dog at home on this day.  This is the last induction for the year."],
	["",	"10",	"3",	"2010",	"   ",	"   ",			"Daylight Saving Start",		"Victoria's period of daylight saving will start at 2:00am on Sunday 3 October 2010. At 2:00am move clocks forward one hour to 3:00am.  Victoria's period of daylight saving will end on Sunday 3 April 2011. At 3:00am move clocks backward one hour to 2:00am."],
	["",	"10",	"4",	"2010",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"10",	"18",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"10",	"23",	"2010",	"Commencing with check in at 08:00 AM",	"Competition to commence at 9:00 AM",	"Double Obedience Trial",	"No Normal Trainng."],
	["",	"10",	"30",	"2010",	"   ",	"   ",	"Melbourne Cup weekend",	"No Normal Training"],

	["",	"10",	"6",	"2010",	"Commencing at 07:30 PM",	"   ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"13",	"2010",	"Commencing at 07:30 PM",	"   ",	"Mid Week Obedience Training",	"  "],
	["",	"10",	"20",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"10",	"27",	"2010",	"Commencing at 07:30 PM",	"   ",	"Mid Week Obedience Training",	"  "],

	["",	"10",	"5",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"10",	"12",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"10",	"19",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"10",	"26",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],

	["",	"10",	"16",	"2010",	"Commencing at 07:00PM",	" ",	"Trivia Night at WODC",	"It will begin at 7:00 pm and the cost will be $10.00 per person.  Bring your own food and nibbles.  Beverages will be available at the snack bar for purchase.  We will have some wonderful prizes plus a raffle.  Participation is limited to 50 people.  Please indicate on the sign up sheet the names of participants.  Teams will be limited to groups of 6-10 depending on the number of participants."],

	["",	"10",	"2",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],


// Nov 2010
	["",	"11",	"8",	"2010",	"   ",				"   ",	"TCC Meeting",	"   "],
	["",	"11",	"14",	"2010",	"   ",				"   ",	"Close off date for Club Trophy Aplications",	"   "],
	["",	"11",	"15",	"2010",	"Commencing at 07:30 PM",	"   ",	"Committee Meeting",	"   "],
	["",	"11",	"27",	"2010",	"Commencing at 01:30 PM",	"   ",	"Junior Presentation and Last Training Day for the Year",	"Awards for our Junior Members fun games for you and your dog"],

	["",	"11",	"3",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"10",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],
	["",	"11",	"17",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Agility Training",	"  " ],
	["",	"11",	"24",	"2010",	"Commencing at 07:30 PM",	"  ",	"Mid Week Obedience Training",	"  "],

	["",	"11",	"2",	"2010",	"   ",				"  ",	"No Obedience Trial Training",	"  "],
	["",	"11",	"9",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"11",	"16",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"11",	"23",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],
	["",	"11",	"30",	"2010",	"Set up commencing at 06:30 PM","  ",	"Obedience Trial Training",	"Werribee Members Only"],

	["",	"11",	"6",	"2010",	"11:00am","12:00noon",	"Foundation Agility Training",	"Foundation Agility will be conducted from 11am to 12noon on the first Saturday of the month commencing the 5 June 2010. Foundation Agility is open to dogs in class 2 and above.  There is no pre-requisite age for dogs (dog will not be jumping of weaving in the foundation class).  Handlers must be over 7 years of age.  Dogs must be trained on a fixed or buckle collar.  No correction chains will be worn.  Handlers must being training treats and a motivational toy"],

// Dec 2010
	["",	"12",	"4",	"2010",	"Commencing at 07:00 PM",	"  ",	"Senior Presentation/Christmas Breakup",	"   " ],
	["",	"12",	"8",	"2010",	"Commencing at 07:00 PM",	"   ","Committee and Instructors Breakup",	"  "]
// Please omit the final comma after the ] from the last line above unless you are going to add another event at this time.
);




