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] = "";
	}
}


yearmatrix[10][5] = "Open House from 5pm - 7pm.  Come see what we're all about!";