//
/*************************************************************************************************
*			     Federation Event DataBase
*          ==============================
*         Created by Adrian Jones, woodsgood.ca
*
* Information about events stored in array...
*  'evDateNum' 	contains numerical date ("yymmdd")
*  'evNameTxt'   	contains name of event
*	'evTimeTxt'		contains time of event
*	'evVenueTxt'	contains HTML description of venue
*	'evRegTxt'		contains HTML description of registation
*
*									--- EDIT  WITH CARE ! ---
*
**************************************************************************************************/

months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

var root = ""					// root info
var evDateNum  = 0;
var evNameTxt  = 1;
var evTimeTxt  = 2;
var evVenueTxt = 3;
var evRegTxt	= 4;

var i = 0;
var evInfo = new Array(); 				// event information array

evInfo[i++] = ['050913','Federation Meeting','5:30 PM','Municipal Buildings',''];

evInfo[i++] = ['050709','Water Quality Day 2005','12:00-14:00','Hotel du Lac, St. Pierre de Wakefield','(<a href="environ/waterquality.htm">details</a>)'];

evInfo[i++] = ['060613','Federation Update','6:00','"la salle du conseil", Val-des-Monts Municipality','(<a href="events.htm">details</a>)'];

evInfo[i++] = ['060708','Water Quality Day 2006','10:00-12:00','Hotel du Lac, St. Pierre de Wakefield','(<a href="environ/waterquality.htm">details</a>)'];

evInfo[i++] = ['060708','Water Quality Day 2007','10:00-12:00','Hotel du Lac, St. Pierre de Wakefield','(<a href="environ/waterquality.htm">details</a>)'];

evInfo[i++] = ['070612','Federation Meeting','6pm','Council room of the Municipality of Val-des-Monts',''];
evInfo[i++] = ['070814','Federation Meeting','6pm','Council room of the Municipality of Val-des-Monts',''];
evInfo[i++] = ['071009','Federation Meeting','6pm','Council room of the Municipality of Val-des-Monts',''];
evInfo[i++] = ['071210','Federation Meeting','6pm','Council room of the Municipality of Val-des-Monts',''];
evInfo[i++] = ['070714','Water Quality Day 2007','10:00','Auberge sur le lac, in St-Pierre-de-Wakefield','(<a href="events.htm#wqd">details</a>)'];
evInfo[i++] = ['070708','Annual General Meeting','','Perkins-sur-le-Lac Association AGM',''];
evInfo[i++] = ['070721','Annual General Meeting','','Lake McGregor Association AGM',''];
evInfo[i++] = ['071129','Free Trees: Ordering Deadline','','Contact Patrick Fredette - 819-776-9414 - <a href="mailto:federationlacsvdm@gmail.com">federationlacsvdm@gmail.com</a>',''];


