// ------------------------------------------------------------------------

/**
 *
 * Controls the show/hide of the calendar events
 *
 */


$(function () {
	
	$("#calendar_filters input").click(function() {
		var category = $(this).attr("id");
		
		if ($("#" + category).attr("checked")) {
			$("." + category).show().parent(".daySpacing").show();
		} else {
			$("." + category).hide();
		}
		
		
		$(".daySpacing").each(function() {
			var day = $(this);

			if (day.children(".event").size() === day.children('.event:hidden').size()) {
				
				if (day.children('.event:hidden').css("display") == "none") {
					day.hide();					
				}
				
				//day.css("color", "#EEEEEE");
				//alert (day.children(".event").size() + " -- " + day.children(".event:hidden").size());
			}
			
		});
		
			
		
	});
	
});
