// define date objects for the meetings - will be used in checking when the meeting is in the past.
var Jan09 = new Date(2009,00,07);
var Feb09 = new Date(2009,01,11);
var Mar09 = new Date(2009,02,11);
var Apr09 = new Date(2009,03,08);
var May09 = new Date(2009,04,13);
var Jun09 = new Date(2009,05,10);
var Jul09 = new Date(2009,06,08);
var Aug09 = new Date(2009,07,12);
var Sep09 = new Date(2009,08,10);
var Oct09 = new Date(2009,09,14);
var Nov09 = new Date(2009,10,11);

// define meeting objects containing a date, speaker, speaker's afiliation, title, and summary. Uses the date objects created above.
var Jan2009 = new Meeting(Jan09,"Club Outing","to the Computer History Museum.","The Babbage Engine, etc.","");
var Feb2009 = new Meeting(Feb09,"Bill Young","SPAUG member","Why build your own PC.","");
var Mar2009 = new Meeting(Mar09,
	"Robert Ackerman",
	"SETI Institute",
	"The Allen Telescope Array (ATA).",
	"Robert Ackerman is Senior Software Scientist for the SETI Institute. SETI, the search for extraterrestrial intelligence, seeks evidence of life in the universe by looking for some signature of its technology. <br>SETI research develops and uses signal-processing technology to search for signals from advanced technological civilizations in our galaxy. The speaker will discuss the engineering aspects of the ATA (Allen Telescope Array), which is one of their newest tools for this task, allowing a targeted SETI search to proceed 24/7. <br>For more info on the Allen Array and to get some idea on what it takes to search for intelligent life in the universe, go to <a href=\"www.seti.org/Page.aspx?pid=503\">www.seti.org/Page.aspx?pid=503</a>.");
var Apr2009 = new Meeting(Apr09,"Larry Templeton","SPAUG member","Building your own High-performance PC","Constructing a home theater PC and a standard PC are about the same, so Larry won&#39;t be repeating Bill Young&#39;s February talk, but will describe the differences: System requirements, Interfaces, Hardware requirements, Software, and Remote controls.");
var May2009 = new Meeting(May09,"John Foliot","Program Manager, Stanford Online Accessibility Program, Stanford University","Stanford Online Accessibility Program","The Stanford Online Accessibility Program, SOAP, began with the realization that guidance and expertise was needed to ensure that online content would be as accessible as possible for our consumers. Anything that uses the Internet for conveying information is fair game as far as online accessibility is concerned.");
var Jun2009 = new Meeting(Jun09,"Jeff Peterson","Video transfer Services","Transferring old film and video to digital media.","Many of us have old family memories stored on 8mm film and 35mm slides. Some may have already been converted to VHS tape. But all of these media have a limited lifespan and can not be easily edited and combined into new presentations.  The process of converting these images to digital format in order to preserve and use them involves a number of processes, some obvious, some subtle which affect the quality of the result. In this presentation Jeff will describe the many steps involved in producing a high quality digital version of the original video and slide images.");
var Jul2009 = new Meeting(Jul09,"Hank Skawinski","Owner and manager of DataWise","Update on the Market","Hank will give his update on what you should buy, what you should avoid, based on his extensive experience supporting over 1,000 computers (including many for SPAUG members). He'll discuss hardware and software, and probably compare and contrast Windows with Linux. This is always an informative presentation, and if you are considering an upgrade of your peripherals, computer or software, be sure to attend. Hank will also help with the CrossTalk session, so if you're having problems, bring your questions. Hank is a favorite SPAUG speaker, and a guru to our gurus.");
var Aug2009 = new Meeting(Aug09,"Gene Barlow; Bill Young","User Group Relations","Interactive video conference on Acronis Home 2009","Webinar. Gene usually has excellent bargains for club members. (Double bill.) Bill Young will share his experience running XP under Linux.");
var Sep2009 = new Meeting(Sep09,"Spaug Members","","Round Table Discussion","How to change your email using your own domain to avoid problems when changing your ISP. (This meeting topic is still not final.)");
var Oct2009 = new Meeting(Oct09,"Red Calub","MicroCenter","","");
var Nov2009 = new Meeting(Nov09,"Kevin Lynn","SPAUG/SVCS member, WinSIG leader","Windows 7","Upgrading from Vista to Windows 7, or Doing a dual-boot clean install with an upgrade version of Windows 7");

var mtgs = new Array();
mtgs.push(Jan2009,Feb2009,Mar2009,Apr2009,May2009,Jun2009,Jul2009,Aug2009,Sep2009,Oct2009,Nov2009);
