/*
This file contains all the date information needed to produce the 16 month co-op calendar.
All that needs to be changed are the numeric values, and occasionally the month associated with that day.
Before saving, please make sure that all numbers are btween 1 and 31 and that all months are spelled correctly, as any error
will cause the script to malfunction or produce incorrect results.

Created by Tim King , Summer 2003*/

var sectionNum=1; //------This is the section number that is working when the calendar begins. It can be either 1 [pink] or a 2 [grey].

/*********This section is needed so the script knows what is going on, it does not need to be edited**********/
var Begin_Paractice_Quarter_Month = new Array();
var Begin_Paractice_Quarter_Day = new Array();
var Mail_Paractice_Card_Month = new Array();
var Mail_Paractice_Card_Day = new Array();
var End_Paractice_Quarter_Month = new Array();
var End_Paractice_Quarter_Day = new Array();
var Begin_Class_Quarter_Month = new Array();
var Begin_Class_Quarter_Day = new Array();
var End_Class_Quarter_Month = new Array();
var End_Class_Quarter_Day = new Array();
/***************************************END DECLARATION OF VARIABLES*************************************/


//****!!!!!!!!!!!******BEGIN EDITING DATES FROM HERE DOWN
var Begin_Calendar_Year = 2009; //---The year the calendar is to begin on
var Begin_Calendar_Day = "Monday"; //---The first day of the first month appearing on the calendar

//--------- Last day of the quarter that is ending as the calendar begins, usually the second thursday in June
//End_Class_Quarter_Day[1] = 8;


//--------- Dates for Summer 2009
Begin_Paractice_Quarter_Month[0] = "June";
Begin_Paractice_Quarter_Day[0] = 22;

//Mail_Practice_Card_Month[0] = "June";
//Mail_Practice_Card_Day[0] = 27;

End_Paractice_Quarter_Month[0] = "September";
End_Paractice_Quarter_Day[0] = 19;

Begin_Class_Quarter_Month[0] = "June";
Begin_Class_Quarter_Day[0] = 22;

End_Class_Quarter_Month[1] = "September";
End_Class_Quarter_Day[1] = 3;



//--------- Dates for Autumn 2009
Begin_Paractice_Quarter_Month[1] = "September";
Begin_Paractice_Quarter_Day[1] = 21;

Mail_Paractice_Card_Month[0] = "September";
Mail_Paractice_Card_Day[0] = 25;

End_Paractice_Quarter_Month[1] = "December";
End_Paractice_Quarter_Day[1] = 26;

Begin_Class_Quarter_Month[2] = "September";
Begin_Class_Quarter_Day[2] = 23;

End_Class_Quarter_Month[3] = "December";
End_Class_Quarter_Day[3] = 12;



//--------- Dates for Winter 2010
Begin_Paractice_Quarter_Month[2] = "December";
Begin_Paractice_Quarter_Day[2] = 28;

Mail_Paractice_Card_Month[1] = "January";
Mail_Paractice_Card_Day[1] = 1;

End_Paractice_Quarter_Month[2] = "March";
End_Paractice_Quarter_Day[2] = 27;

Begin_Class_Quarter_Month[4] = "January";
Begin_Class_Quarter_Day[4] = 4;

End_Class_Quarter_Month[5] = "March";
End_Class_Quarter_Day[5] = 20;



//--------- Dates for Spring 2010
Begin_Paractice_Quarter_Month[3] = "March";
Begin_Paractice_Quarter_Day[3] = 29;

Mail_Paractice_Card_Month[2] = "April";
Mail_Paractice_Card_Day[2] = 2;

End_Paractice_Quarter_Month[3] = "June";
End_Paractice_Quarter_Day[3] = 19;

Begin_Class_Quarter_Month[6] = "March";
Begin_Class_Quarter_Day[6] = 29;

End_Class_Quarter_Month[7] = "June";
End_Class_Quarter_Day[7] = 10;



//--------- Dates for Summer 2010
Begin_Paractice_Quarter_Month[4] = "June";
Begin_Paractice_Quarter_Day[4] = 21;

Mail_Paractice_Card_Month[3] = "June";
Mail_Paractice_Card_Day[3] = 25;

End_Paractice_Quarter_Month[4] = "September";
End_Paractice_Quarter_Day[4] = 18;

Begin_Class_Quarter_Month[8] = "June";
Begin_Class_Quarter_Day[8] = 21;

End_Class_Quarter_Month[9] = "September";
End_Class_Quarter_Day[9] = 2;



//--------- Dates for Autumn 2010
Begin_Paractice_Quarter_Month[5] = "September";
Begin_Paractice_Quarter_Day[5] = 20;

Mail_Paractice_Card_Month[4] = "September";
Mail_Paractice_Card_Day[4] = 24;

End_Paractice_Quarter_Month[5] = "December";
End_Paractice_Quarter_Day[5] = 25;

Begin_Class_Quarter_Month[10] = "September";
Begin_Class_Quarter_Day[10] = 22;