$(function() {
	$('#calendar p.description').hide();
	$('#calendar tr:first').addClass('first');
	$('#calendar .more').click(function() {
		$(this).fadeOut().closest('.event').find('p.description').slideDown();
	});
});
