//the date format is IMPORTANT. No spaces, always YYYY,MM,DD
//if you encounter problems with dates being picked up check here first.
//make sure none of the tabs get disturbed
// *** if you add one, aryEventDate[x+1], make sure to change the index numbers!!!!  ***

// School wide spirit days
var arySummerEventDate = new Array();
var arySummerEventName = new Array();
var arySummerEventText = new Array();
var arySummerEventDisplayDays = new Array();

arySummerEventDate[1] = '2010,07,01';	 // start date
arySummerEventName[1] = 'Happy Canada Day!';	 // subject
arySummerEventText[1] = 'Have a great time on our nation\'s birthday.';	 // description
arySummerEventDisplayDays[1] = 4;	 // -ive is for debugging

