jQuery(function( $ ){
	$(".cal-list-title").each(function(){
		if($(this).text().length>90) $(this).text($(this).text().substr(0,90)+'...');
	});
});
