$(function () {

	$('.showevent').click(function() {
								   
		$("#fullevent" + this.id).slideToggle(600);	
		//$(this).text($(this).text() == 'Hide comments' ? 'Show comments' : 'Hide comments');
		return false;
		
	});		
	
});