// calendar global variables

// SET UP GLOBALS 
var now   = new Date(); // get the current date
var day = now.getDate();   // day goes from 1 to 31
var month = now.getMonth(); // Month goes from 0 to 11, so that an array can be looked up
var year = now.getFullYear(); // year is 4 digits usually
var months = ["January","February","March","April","May","June","July","August","September","October","November","December"];
var daysOfTheWeek = ["Sunday", "Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
var events = []; // this array will contain all calendared events [{day, month, year, start, end, title, content}] repeating events handled as single events 
