//
/*************************************************************************************************
*			     GOTT 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('Jan.','Feb.','Mar.','Apr.','May','Jun.','Jul.','Aug.','Sep.','Oct.','Nov.','Dec.');

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','General Course','8:00AM - 5:00PM','GOTT Offices',''];
evInfo[i++] = ['050816','General Course','8:00AM - 5:00PM','GOTT Offices',''];

//



