// 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 ("").
//
// 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. "")
//
// "D"aily 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
//
// "W"eekly 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.
//
// "Y"early events are specific dates that never change - the Year field is ignored
//	example - Christmas is: "12","25","",

// ["Recorrência", "Mês", "Dia", "Ano", "Local", "Horário", "Título", "Descrição"]
events = new Array(
	["Y",	"1",	"12",	"2008",	"Camping Recanto da Cachoeira - São Roque, a 50km da capital",	"12:00",	"1º Encontro Nacional Escort Clube",	"Informações sobre comboios no fórum"],	
	
	["Y",	"1",	"13",	"2008",	"Camping Recanto da Cachoeira - São Roque, a 50km da capital",	"12:00",	"1º Encontro Nacional Escort Clube",	"Informações sobre comboios no fórum"],	
	
	//["Y",	"12",	"1",	"2007",	"Posto Ipiranga da Av. Raja Gabaglia, em frente ao Raja Grill, do lado da Cachaçaria Alambique",	"15:00",	"7º Encontro Oficial MG",	"O posto fica no lado direito da Av. Raja, Sentido Centro-BH Shopping (Belvedere)"],
	
	//["Y",	"10",	"19",	"2007",	"Posto Shell YES na Barra Funda",	"22:00",	"6º Encontro Noturno SP",	""],
	
	//["Y",	"11",	"9",	"2007",	"Posto Esso Marginal Tietê",	"21:00",	"7º Encontro Noturno SP",	"O posto fica entre a ponte Julio de Mesquita Neto e Ponte do Limão, sentido Rod. Castelo Branco"],
	
	//["Y",	"12",	"15",	"2007",	"Parque dos Patins - Lagoa",	"14:00",	"7º Encontro Oficial Escort Clube RJ + 4º Mega Encontro de Clubes do RJ",	"Chegar antes das 14h para garantir lugar"],
	
	//["Y",	"11",	"3",	"2007",	"Praça da Igreja, em Canela",	"8:30",	"4º Encontro Oficial RS",	"Saída de Porto Alegre, no Laçador (Av. dos Estados, junto ao antigo aeroporto) às 8:30hs"],
	
	//["Y",	"12",	"7",	"2007",	"Posto Ipiranga ao lado do Barra Garden Shopping",	"21:00",	"2º Encontro Noturno RJ",	"Av. das Américas, Sentido São Conrado/Centro"],
	
	//["Y",	"10",	"19",	"2007",	"Ecoposto (Av. Ipiranga, esquina com Érico Veríssimo)",	"21:00",	"2º Encontro Noturno RS",	""],
	
	//["Y",	"11",	"25",	"2007",	"Estacionamento do Carrefour no Shopping Center Norte, em frente à Casa do Pão de Queijo",	"10:00",	"7º Encontro Oficial SP",	""],
	
	//["Y",	"11",	"25",	"2007",	"Autódromo Internacional de Curitiba (AIC) em Pinhais",	"9:00",	"5º Encontro Oficial PR + Track Day",	""],
	
	//["Y",	"11",	"15",	"2007",	"Quadra 12 Conjunto H Casa 05 - Setor Sul Gama, DF",	"9:00",	"6º Encontro Oficial DF + Churrasco",	""],
	
	//["Y",	"11",	"17",	"2007",	"Estacionamento do Carrefour Barra da Tijuca, em frente ao Bob's",	"14:00",	"6º Encontro Oficial RJ",	""],
	
	//["Y",	"11",	"29",	"2007",	"Estacionamento externo do Terraço Shopping",	"19:00",	"1º Encontro Noturno DF",	""],

	//["Y",	"4",	"26",	"2008",	"Koxixo's Bar na Beira Mar Norte em Florianópolis",	"15:30",	"5º Encontro Oficial SC",	""]

);
