// define date objects for the meetings - will be used in checking when the meeting is in the past.
var Jan12 = new Date(2012,00,11);
var Feb12 = new Date(2012,01,08);
var Mar12 = new Date(2012,02,14);
var Apr12 = new Date(2012,03,11);
var May12 = new Date(2012,04,09);
var Jun12 = new Date(2012,05,13);
var Jul12 = new Date(2012,06,11);
var Aug12 = new Date(2012,07,08);
var Sep12 = new Date(2012,08,12);
var Oct12 = new Date(2012,09,10);
var Nov12 = new Date(2012,10,14);
var Dec12 = new Date(2012,11,12);

// define meeting objects containing a date, speaker, speaker's afiliation, title, and summary. Uses the date objects created above.
var Jan2012 = new Meeting(Jan12,
	"Maury Green",
	"President and Webmaster of the Silicon Valley Computer Society (SVCS). ",
	"Editing Your Videos with Pinnacle Studio",
	"Maury will demonstrate some of the techniques used with Pinnacle Studio 15 Ultimate video editing software to convert your video files into DVDs the whole family can enjoy. He will compare the capabilities of Pinnacle Studio to professional level programs like Avid Media and Adobe Premiere Pro.");
var Feb2012 = new Meeting(Feb12,
	"Gene Barlow",
	"User Group Relations",
	"Computer backup with Acronis ",
	"This will be a webinar.");
var Mar2012 = new Meeting(Mar12,
	"SPAUG panel of experts",
	"Club members with various specialized knowledge.",
	"Questions from the members.",
	"Computer questions not usually addressed at monthly meetings. Members with expertise to share will field your questions.");
var Apr2012 = new Meeting(Apr12,
	"Red Calub",
	"Micro Center",
	"Coming Products.",
	"The latest information.");
var May2012 = new Meeting(May12,
	"",
	"",
	"",
	"");
var Jun2012 = new Meeting(Jun12,
	"",
	"",
	"",
	"");
var Jul2012 = new Meeting(Jul12,
	"",
	"",
	"",
	"");
var Aug2012 = new Meeting(Aug12,
	"",
	"",
	"",
	"");
var Sep2012 = new Meeting(Sep12,
	"",
	"",
	"",
	"");
var Oct2012 = new Meeting(Oct12,
	"",
	"",
	"",
	"");
var Nov2012 = new Meeting(Nov12,
	"",
	"",
	"",
	"");
var Dec2012 = new Meeting(Dec12,"No meeting this month","","","");
	
mtgs.push(Jan2012,Feb2012,Mar2012,Apr2012,May2012,Jun2012,Jul2012,Aug2012,Sep2012,Oct2012,Nov2012,Dec2012);

