// define date objects for the meetings - will be used in checking when the meeting is in the past.
var Jan11 = new Date(2011,00,12);
var Feb11 = new Date(2011,01,09);
var Mar11 = new Date(2011,02,09);
var Apr11 = new Date(2011,03,13);
var May11 = new Date(2011,04,11);
var Jun11 = new Date(2011,05,08);
var Jul11 = new Date(2011,06,13);
var Aug11 = new Date(2011,07,10);
var Sep11 = new Date(2011,08,14);
var Oct11 = new Date(2011,09,12);
var Nov11 = new Date(2011,10,09);
var Dec11 = new Date(2011,11,14);

// define meeting objects containing a date, speaker, speaker's afiliation, title, and summary. Uses the date objects created above.
var Jan2011 = new Meeting(Jan11,
	"Chuck Esposito",
	"San Francisco FBI / Oakland RA",
	"Cyber Counterterrorism",
	"This presentation will discuss the terrorist threat to our National Information infrastructure as well as the use of our Internet infrastructure to facilitate terrorist operations.");
var Feb2011 = new Meeting(Feb11,
	"Laurie Burress",
	"Lynda.com",
	"Online Training Library",
	"Lynda.com is a computer training company; membership is $25/month, $37.50 for all the material.");
var Mar2011 = new Meeting(Mar11,
	"Richard Rands",
	"Professional Genealogist",
	"Yahoo! Let’s Google Bing—or YahGooBing your family tree",
	"Richard Rands is a professional genealogist with over 50 years of experience working on his own family history and helping others trace their ancestors. He is currently president of the Silicon Valley Computer Genealogy Group, Director of the Los Altos Family History Center, and is the proprietor of Brute Force Genealogy.");
var Apr2011 = new Meeting(Apr11,
	"Gene Barlow",
	"User Group Relations",
	"Acronis, etc.",
	"Video presentation - webinar.");
var May2011 = new Meeting(May11,
	"Angela Hey",
	"Mountain View Voice technology columnist",
	"From Telephones to Tablets, the Good, the Bad, and the Ugly",
	"");
var Jun2011 = new Meeting(Jun11,
	"Red Calub",
	"Micro Center",
	"",
	"");
var Jul2011 = new Meeting(Jul11,
	"Andy Marken",
	"President, Marken Communications",
	"Get Ready for Your Next Purchase",
	"He'll emphasize smartphones, tablets, apps, content -- but will be prepared to discuss the other areas you find of most interest, most importance");
var Aug2011 = new Meeting(Aug11,
	"SPAUG panel of experts - (1)",
	"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 Sep2011 = new Meeting(Sep11,
	"SPAUG panel of experts - (2)",
	"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 Oct2011 = new Meeting(Oct11,
	"Jay Elliot",
	"CEO & Author (IBM, Intel, Apple).",
	"",
	"");
var Nov2011 = new Meeting(Nov11,
	"Hank Skawinski",
	"Datawise (owner)",
	"Annual presentation.",
	"");
var Dec2011 = new Meeting(Dec11,"No meeting this month","","","");
	
mtgs.push(Jan2011,Feb2011,Mar2011,Apr2011,May2011,Jun2011,Jul2011,Aug2011,Sep2011,Oct2011,Nov2011,Dec2011);

