//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!!!!  ***

// Misc stuff
var aryMiscEventDate = new Array();
var aryMiscEventName = new Array();
var aryMiscEventText = new Array();
var aryMiscEventDisplayDays = new Array();

aryMiscEventDate[1] = '2009,11,03';	 // start date
aryMiscEventName[1] = 'It is time to \"Fall Back\" this weekend.';	 // subject
aryMiscEventText[1] = 'You get to sleep one extra hour on Sunday so you are well rested for school on Monday!';	 // description
aryMiscEventDisplayDays[1] = 7;	 // -ive is for debugging

aryMiscEventDate[2] = '2009,10,13';	 // start date
aryMiscEventName[2] = 'Entertainment Books are Here!';	 // subject
aryMiscEventText[2] = 'Help support VM by selling them at your parents\' workplace!';	 // description
aryMiscEventDisplayDays[2] = 20;	 // -ive is for debugging

aryMiscEventDate[3] = '2009,10,14';	 // start date
aryMiscEventName[3] = 'Entertainment Books Are Due Back Tomorrow.';	 // subject
aryMiscEventText[3] = 'Please make sure you return and unsold books and bring in the money from the<br>sales. Thank you and enjoy your coupons.';	 // description
aryMiscEventDisplayDays[3] = 1;	 // -ive is for debugging

aryMiscEventDate[4] = '2000,01,19';	 // start date
aryMiscEventName[4] = 'Drop Everything and Read as Literacy Week Kicks Off at VM next Monday!';	 // subject
aryMiscEventText[4] = 'There will be tons of fun things going on during this annual<br>celebration of reading. And remember.... ALWAYS be ready to read!';	 // description
aryMiscEventDisplayDays[4] = 5;	 // -ive is for debugging

aryMiscEventDate[5] = '2000,01,19';	 // start date
aryMiscEventName[5] = 'Drop Everything and Read is Here Tomorrow!';	 // subject
aryMiscEventText[5] = 'When you hear the music it is time to drop everything and read!<br> And remember.... ALWAYS be ready to read!';	 // description
aryMiscEventDisplayDays[5] = 7;	 // -ive is for debugging

aryMiscEventDate[6] = '2009,10,15';	 // start date
aryMiscEventName[6] = 'Picture Day is Thursday!';	 // subject
aryMiscEventText[6] = 'If you are going to get your hair PERFECT Thursday would be the day.';	 // description
aryMiscEventDisplayDays[6] = 6;	 // -ive is for debugging

aryMiscEventDate[6] = "2010,03,14";
aryMiscEventName[6] = "Math Geeks Celebrate, March 14<sup>th</sup> is PI Day!";
aryMiscEventText[6] = "The numeric version of 14<sup>th</sup> of March is \'3.14\'. Whooo Hooo!.";
aryMiscEventDisplayDays[6] = 2;

aryMiscEventDate[7] = "2009,11,17";
aryMiscEventName[7] = "Photo Retakes Are November 18<sup>th</sup>.";
aryMiscEventText[7] = "This is the last chance to get your photos right.<br>Bring your nice clothes and your best smile.";
aryMiscEventDisplayDays[7] = 5;

aryMiscEventDate[8] = "2009,11,17";
aryMiscEventName[8] = "The Leonid Meteor Shower peaks on November 17<sup>th</sup>.";
aryMiscEventText[8] = "The shower should produce a mild (20 to 30 per hour) but pretty sprinkling of meteors<br>over North America followed by a more intense outburst over Asia.";
aryMiscEventDisplayDays[8] = 7;

aryMiscEventDate[9] = "2009,12,21";
aryMiscEventName[9] = "The Winter Solstice or Yule is on December 21<sup>st</sup>.";
aryMiscEventText[9] = "Yule varies from year to year, but falls between December 20<sup>th</sup> and 23<sup>rd</sup>.<br>This year we celebrate it on the 21<sup>st</sup>. It is the shortest day of the year";
aryMiscEventDisplayDays[9] = 7;

aryMiscEventDate[10] = "2010,03,14";
aryMiscEventName[10] = "Spring Forward on the 14<sup>th</sup>.";
aryMiscEventText[10] = "When you go to bed on Saturday night, set the clocks ahead one hour.";
aryMiscEventDisplayDays[10] = 5;

// This date needs the year and the "would have been" updating but nothing else
aryMiscEventDate[11] = "2011,02,26";
aryMiscEventName[11] = "Johnny Cash's Birthday is on the 26th.";
aryMiscEventText[11] = "I wear the black for the poor and the beaten down,<br>Livin\' in the hopeless, hungry side of town.<br><br>Wear black for the poor and beaten down.<br>The Man in Black would have been 79 years old.";
aryMiscEventDisplayDays[11] = 1;
