/*
List of reservation dates for use with calendar.js.
Each date is an element in an array.
*/

// Add or delete reservation dates in the list below, one per line.
// Dates added to list will NOT appear in the calendar.
// Dates must be in order - earliest first.
// thisReservation.machineTime is the date in seconds since Jan 01, 1970.
// thisReservation.id must be unique for each record.
// Ignore the first item, "pastDate", which is an arbitrary date object.
// Please delete past dates to keep the list as small as possible.
// IMPORTANT:
// Dates must be formatted exactly as example below, including leading comma.
//	,"December 31, 2000"

//-------------------------------------------------------------------------

// Create array of date objects.
reservations = new Array();
index = 0;

// Create arbitrary past date as the first element.
d = new Date();
pastDate = new Date(d.getTime() - 1000 * 60 * 60 * 24);
reservations[index] = new Object();
reservations[index].jsDate = pastDate 

// START RESERVATION LIST.
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1293144069";
thisReservation.machineTime = "1293177600";
thisReservation.jsDate = new Date("December 24, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1293144070";
thisReservation.machineTime = "1293264000";
thisReservation.jsDate = new Date("December 25, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1293144071";
thisReservation.machineTime = "1293350400";
thisReservation.jsDate = new Date("December 26, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1292915786";
thisReservation.machineTime = "1293436800";
thisReservation.jsDate = new Date("December 27, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1292915787";
thisReservation.machineTime = "1293523200";
thisReservation.jsDate = new Date("December 28, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1292915788";
thisReservation.machineTime = "1293609600";
thisReservation.jsDate = new Date("December 29, 2010");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622491";
thisReservation.machineTime = "1299484800";
thisReservation.jsDate = new Date("March 7, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622492";
thisReservation.machineTime = "1299571200";
thisReservation.jsDate = new Date("March 8, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622493";
thisReservation.machineTime = "1299657600";
thisReservation.jsDate = new Date("March 9, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622494";
thisReservation.machineTime = "1299744000";
thisReservation.jsDate = new Date("March 10, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622495";
thisReservation.machineTime = "1299830400";
thisReservation.jsDate = new Date("March 11, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622496";
thisReservation.machineTime = "1299916800";
thisReservation.jsDate = new Date("March 12, 2011");
index++;
reservations[index] = new Object();
thisReservation = reservations[index];
thisReservation.id = "1291622497";
thisReservation.machineTime = "1300003200";
thisReservation.jsDate = new Date("March 13, 2011");
// END RESERVATION LIST.

