// 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 luncheon_date = new Date(2012, 2-1, 14, 12, 0);
var reservation_deadline = new Date(2012, 2-1, 10, 23, 59);
// month_tag should match the link name in the events page (3 letters, 1st letter caps)
var month_tag = "Feb"
var speaker = "Nathan Ainsworth"
var lunchTitle = "Autonomous Smartgrid Testbed: A development and demonstration platform for flexible Smartgrid architectures"
var lunch_co = "Georgia Power Company Headquarters"
var lunch_room = "Banquet Room"

// Luncheon title and short description

// NOTE: Any quotes (and other special JS characters) need to be preceded by a backslash
var lunchDescHTML = "At our next luncheon, we will be privileged to have <strong>" + speaker + "</strong> to discuss  " +
					"<a href=\"events.html#" + month_tag + "Lunch\">" + lunchTitle + "</a>. " +
					"The luncheon will be held at <strong>" + lunch_co + "</strong> headquarters " +
					"in the <strong>" + lunch_room + "</strong> on " + luncheon_date.toLocaleDateString() + " at noon. " +
					"A map to the event, presentation details and speaker bio can be found <a href=\"events.html#" + month_tag + "Lunch\">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();
