//Used with calendar to disable dates

// this table holds your special days, so that we can automatize
// things a bit:
var SPECIAL_DAYS = {
	0 : [ 1 ], 					// special days in January
	4 : [ 1, 8 ],	 			// special days in May
	6 : [ 5, 6 ], 				// special days in July
	8 : [ 28 ],	 				// special days in September
	9 : [ 28 ],	 				// special days in October
	11 : [ 24, 25, 26, 27 ]	 		// special days in December
};



