//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!!!!  ***

// Statutory holidaze
var aryStatEventDate = new Array();
var aryStatEventName = new Array();
var aryStatEventText = new Array();
var aryStatEventDisplayDays = new Array();

aryStatEventDate[1] = '2009,09,07';	 // start date
aryStatEventName[1] = 'Labour Day!';	 // subject
aryStatEventText[1] = 'Enjoy your weekend.';	 // description
aryStatEventDisplayDays[1] = 7;	 // -ive is for debugging

aryStatEventDate[2] = '2009,10,12';	 // start date
aryStatEventName[2] = 'Thanksgiving is coming!';	 // subject
aryStatEventText[2] = 'There will be no school on Monday.';	 // description
aryStatEventDisplayDays[2] = 7;	 // -ive is for debugging

aryStatEventDate[3] = '2009,12,21';	 // start date
aryStatEventName[3] = 'Christmas is Almost Here!';	 // subject
aryStatEventText[3] = 'The break is from December 21<sup>st</sup> to January 1<sup>st</sup>. See you on the 2<sup>nd</sup>.';	 // description
aryStatEventDisplayDays[3] = 7;	 // -ive is for debugging

aryStatEventDate[4] = '2010,01,01';	 // start date
aryStatEventName[4] = 'Welcome Back!';	 // subject
aryStatEventText[4] = 'We hope you had a wonderful holiday.';	 // description
aryStatEventDisplayDays[4] = 2;	 // -ive is for debugging

aryStatEventDate[5] = '2010,02,15';	 // start date
aryStatEventName[5] = 'Family Day is this Monday!';	 // subject
aryStatEventText[5] = 'Enjoy your weekend with friends and family.';	 // description
aryStatEventDisplayDays[5] = 7;	 // -ive is for debugging

aryStatEventDate[6] = '2010,03,15';	 // start date
aryStatEventName[6] = 'March Break Starts on Monday!';	 // subject
aryStatEventText[6] = 'Get plenty of rest and have some fun.';	 // description
aryStatEventDisplayDays[6] = 7;	 // -ive is for debugging

aryStatEventDate[7] = '2010,03,22';	 // start date
aryStatEventName[7] = 'Back to School on Monday!';	 // subject
aryStatEventText[7] = 'We hope you had a great break.';	 // description
aryStatEventDisplayDays[7] = 2;	 // -ive is for debugging

aryStatEventDate[8] = '2010,04,02';	 // start date
aryStatEventName[8] = 'Good Friday is this week!';	 // subject
aryStatEventText[8] = 'The Easter weekend is coming up.';	 // description
aryStatEventDisplayDays[8] = 7;	 // -ive is for debugging

aryStatEventDate[8] = '2000,03,05';	 // start date
aryStatEventName[8] = 'No School on Monday!';	 // subject
aryStatEventText[8] = 'We are looking forward to seeing you on Tuesday.';	 // description
aryStatEventDisplayDays[8] = 2;	 // -ive is for debugging

aryStatEventDate[9] = '2010,05,24';	 // start date
aryStatEventName[9] = 'Victoria Day is on Monday!';	 // subject
aryStatEventText[9] = 'Have a great long weekend.';	 // description
aryStatEventDisplayDays[9] = 7;	 // -ive is for debugging



