daysInMonth = new Array("31",  "28",  "31",  "30",  "31",  "30",  "31",  "31",  "30",   "31",  "30",  "31");
yearmatrix = new Array(12);

var month, day;

/****initialize yearmatrix with empty strings****/
for (month=0; month<12; month++)
{
	yearmatrix[month] = new Array(daysInMonth[month]);
	for (day=0; day < daysInMonth[month]; day++)
	{
		yearmatrix[month][day] = "";
	}
}

/*------------------------------------------
// eps
// Note when filling in year matrix to use yearmatrix[month-1][day-1]
// due to arrays starting at zero.
//----------------------------------------------*/

//----------
// eps
// use newline when date is double digit.
// use newline2 when date is single digit.
//-------------------
var newline = "<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
var newline2 = "<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";

yearmatrix[10][12] = "Dr. Swain at Orange County office." +  newline +
					"Parent Informational Meeting at 5pm.";
yearmatrix[10][13] = "Dr. Swain at Orange County office.";

yearmatrix[11][7] = "Dr. Swain at Orange County office."+  newline2 +
					"Parent Informational Meeting at 5pm.";
yearmatrix[11][8] = "Dr. Swain at Orange County office.";