//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!!!!  ***

// PD days go here
var aryPDDaysEventDate = new Array();
var aryPDDaysEventName = new Array();
var aryPDDaysEventText = new Array();
var aryPDDaysEventDisplayDays = new Array();

aryPDDaysEventDate[1] = '2009,10,09';	 // start date
aryPDDaysEventName[1] = 'PD day on Friday!';	 // subject
aryPDDaysEventText[1] = 'It is a Ministry Day. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[1] = 7;	 // -ive is for debugging

aryPDDaysEventDate[2] = '2009,11,13';	 // start date
aryPDDaysEventName[2] = 'PD day on Friday!';	 // subject
aryPDDaysEventText[2] = 'It is a Ministry Day. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[2] = 7;	 // -ive is for debugging

aryPDDaysEventDate[3] = '2009,11,16';	 // start date
aryPDDaysEventName[3] = 'PD day on Monday!';	 // subject
aryPDDaysEventText[3] = 'Report cards are being written. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[3] = 7;	 // -ive is for debugging

aryPDDaysEventDate[4] = '2009,12,03';	 // start date
aryPDDaysEventName[4] = 'December 3<sup>rd</sup> is Parent Teacher Interview Night';	 // subject
aryPDDaysEventText[4] = 'We are holding Parent/Teacher interviews this evening and all day Friday. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[4] = 7;	 // -ive is for debugging

aryPDDaysEventDate[5] = '2009,12,04';	 // start date
aryPDDaysEventName[5] = 'PD day on Friday!';	 // subject
aryPDDaysEventText[5] = 'We are holding Parent/Teacher interviews all day. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[5] = 1;	 // -ive is for debugging

aryPDDaysEventDate[6] = '2010,02,12';	 // start date
aryPDDaysEventName[6] = 'PD day on Friday!';	 // subject
aryPDDaysEventText[6] = 'It is a Board Day. Enjoy your long weekend.';	 // description
aryPDDaysEventDisplayDays[6] = 7;	 // -ive is for debugging

aryPDDaysEventDate[7] = '2010,06,28';	 // start date
aryPDDaysEventName[7] = 'PD day on Monday!';	 // subject
aryPDDaysEventText[7] = 'It is the last day at school for teachers.';	 // description
aryPDDaysEventDisplayDays[7] = 7;	 // -ive is for debugging

