$(document).ready(function() {
	$('.event-description-truncated').hover(function(){
		$(this).css('color','#777');
	}, function(){
		$(this).css('color','#555');
	});
	$('.event-description-truncated').click(function(){
		$(this).hide().next().show();
		$(this).next().css('cursor','pointer');
	});
	$('.event-description-truncated').next().click(function(){
		$(this).hide().prev().show();			
	});	
});
