// introductory para for the calendar
var introText = "";

// number of months to display the calendar
var noOfMonths = 18;

// Ranges are defined using american dates MM/DD/YYYY-MM/DD/YYYY. 
// Any combination of these can be combined by delimiting the string with commas. 
// For example: "5/30/2008,5/30/2008,5/5/2008-5/27/2008"
var book = [];


//july - aug 09
book.push("7/17/2009-9/3/2009");

//sept 09
book.push("9/11/2009-9/17/2009");

//may - june 10
book.push("5/28/2010-6/3/2010");
             





