$(document).ready(function() {
	$("div[class^=eventMainHide]").hide();
	$("div[class^=details-]").hide();
	$("div[id^=commentbox]").hide();
	
	
 });

function show(id){
	$(".details-" + id).show('slow');
	$(".eventMainHide"+id).show();
	$(".eventMainShow"+id).hide();
	
}
function hide(id){
	$(".details-" + id).hide('slow');
	$(".eventMainHide"+id).hide();
	$(".eventMainShow"+id).show();
}
function showComment(id){
	$("#commentbox-"+ id).show('slow');
	$("#slick-toggle-show-"+ id).hide();
	$("#slick-toggle-hide-"+ id).show();
}
function hideComment(id){
	$("#commentbox-"+ id).hide('slow');
	$("#slick-toggle-show-"+ id).show();
	$("#slick-toggle-hide-"+ id).hide();
}
