$(document).ready(function() {
	$("#toggle_all").click(function() {
		$("#programs :checkbox").attr('checked', 'checked');	
	});
	$("#toggle_none").click(function() {
		$("#programs :checkbox").attr('checked', '');	
	});
	$("fieldset.calendar_event img").click(function() {
		toggle_details($(this));
	})
});