$(function(){
	// Add classes to make the calendar display properly
	$('tbody tr:first').addClass('first');
	$('tbody tr').each(function(){
		$(this).children('td:last').addClass('last');
	});
	// Show/hide effect on calendar
	$('#show-featured,#show-lend').attr('checked','checked');
	$('#show-featured').change(function(){
		if($(this).val()) $('p.featured-event').show();
		else $('p.featured-event').hide();
	});
	$('#show-lend').change(function(){
		if($(this).val()) $('p.lend-a-hand').show();
		else $('p.lend-a-hand').hide();
	});
	$('#channel-month,#channel-year').change(function(){
		window.location.href = '/get-involved/calendar/'+$('#channel-year').val()+'/'+$('#channel-month').val();
	});
});
