// define date objects for the meetings - will be used in checking when the meeting is in the past.
var Jan10 = new Date(2010,00,13);
var Feb10 = new Date(2010,01,10);
var Mar10 = new Date(2010,02,10);
var Apr10 = new Date(2010,03,14);
var May10 = new Date(2010,04,12);
var Jun10 = new Date(2010,05,09);
var Jul10 = new Date(2010,06,14);
var Aug10 = new Date(2010,07,11);
var Sep10 = new Date(2010,08,08);
var Oct10 = new Date(2010,09,13);
var Nov10 = new Date(2010,10,10);
var Dec10 = new Date(2010,11,08);

// define meeting objects containing a date, speaker, speaker's afiliation, title, and summary. Uses the date objects created above.
var Jan2010 = new Meeting(Jan10,
	"Cathy Marshall",
	"Microsoft (Senior researcher, Silicon Valley lab) and Texas A&M (Center for the Study of Digital Libraries)",
	"Personal digital Archiving",
	"What should I keep? Where should I keep it? How will I maintain it? How will I find it? These questions present challenges: (1) How content accumulates; (2) How content is distributed and copied; (3) Benign neglect as a mode of stewardship; and (4) Retrieval from an archive may differ from Internet search or desktop retrieval.");
var Feb2010 = new Meeting(Feb10,
	"Gary Sasaki",
	"",
	"Highlights of the Consumer Electronics Show",
	"");
var Mar2010 = new Meeting(Mar10,
	"Elliot Margolies",
	"Media Center, Palo Alto",
	"Tour of the studios",
	"");
var Apr2010 = new Meeting(Apr10,
	"Maurice Green",
	"SPAUG recording secretary and SVCS president",
	"Producing a DVD of family memories from video clips and pictures.",
	"");
var May2010 = new Meeting(May10,
	"Kevin Lynn",
	"SPAUG and SVCS",
	"Office 2010",
	"");
var Jun2010 = new Meeting(Jun10,
	"Hank Skawinski",
	"DataWise",
	"",
	"");
var Jul2010 = new Meeting(Jul10,
	"Robert B Harrington",
	"",
	"Fiber for Communities.",
	"In February 2010, Google announced its Fiber for Communities initiative. The City of Palo Alto, together with 1,100 other municipal and government entities, applied. Palo Alto's chances in the Google Fiber competition will be the focus of Bob's remarks.");
var Aug2010 = new Meeting(Aug10,
	"Judy Baker, PhD",
	"Foothill College, Dean CTIS Div.",
	"Computer Instruction at Foothill College",
	"The Foothill College CTIS Division provides two online Associate of Science degrees:  Computer Software Development and Database Management.  Our day, evening, weekend, and online courses span all aspects of computing from beginning to advanced.");
var Sep2010 = new Meeting(Sep10,
	"Dan Gallo",
	"Micro Center, General Manager",
	"What's new in the Marketplace",
	"Dan will review what trends he sees in the future for his computing customers including the types of computers we will be using next year, the impact of the decrease in price of  various types, and the effect on the number of the endangered desktops.");
var Oct2010 = new Meeting(Oct10,
	"Angela Hey",
	"",
	"Can One Device Do It All? How Many Phones, Cameras, Tablets and Computers Do I Really Need?",
	"");
var Nov2010 = new Meeting(Nov10,
	"Hank Skawinski",
	"DataWise",
	"",
	"Hank's news and opinions on the state of the information industry.");
var Dec2010 = new Meeting(Dec10,"No meeting this month","","","");
	
mtgs.push(Jan2010,Feb2010,Mar2010,Apr2010,May2010,Jun2010,Jul2010,Aug2010,Sep2010,Oct2010,Nov2010,Dec2010);
