// Date is expressed as (Year, Month-1, Date, Hour, Minute)
// NOTE: Month must be entered as Month-1 (i.e. January is month 0)
var reservation_deadline = new Date(2009, 10, 6, 17, 00);
var luncheon_date = new Date(2009, 10, 10, 12, 0);

// Luncheon title and short description
var lunchTitle = "Computational Electricity Systems and the Smart Grid"
// NOTE: Any quotes (and other special JS characters) need to be preceded by a backslash
var lunchDescHTML = "At our next luncheon, Dr. Santiago Grijalva will be giving a presentation on the " +
					"<a href=\"events.html#NovLunch\">Computational Electricity Systems and the Smart Grid</a>. " +
					"The luncheon will be held at <strong>Georgia Transmission Corporation</strong> " +
					"on Tuesday, November 10 at noon. " +
					"A map to the event, presentation details and speaker bio can be found <a href=\"events.html#NovLunch\">here</a> on the " +
					"<a href=\"events.html\">events page</a>."

// ++++++++++++++++++++++++++++++++ SHOULDN'T NEED TO EDIT ANYTHING BELOW THIS LINE ++++++++++++++++++++++++++++++++
// Current date on user's machine
var current_date = new Date();
// Dates as displayed to user
var rDateTimeStr = reservation_deadline.toLocaleTimeString() + " on " + reservation_deadline.toLocaleDateString();;
var lunchDateStr = luncheon_date.toLocaleDateString();