/**
Author: Ben Floyd
Date: 04/10/2008
Purpose: 	This file contains a javascript object with dates that should be blocked out. 
			It needs to be updated each year to ensure that the dates are properly maintained.
Format: month : [ day, day day ], month : [ day, day ]
Month: 0 = Jan, 1 = Feb, etc.
Day: Days are correct and do not need to be reduced by one.
 
*/

var HOLIDAYS = {
	3 : [ 10, 12 ],
	4 : [ 1, 5 ]
};