


$(document).ready( function(){  
	$('table.calendar tr').click(function() {
	if($(this).find(".more").is(":visible")) {
		$(this).find(".more").slideUp(200);
		$(this).find(".closeBtn").fadeOut(50);
	
	}else{ 
	
		$(this).find(".more").slideDown(200);
		$(this).find(".closeBtn").fadeIn(100);}
	});
});



