$(document).ready(function(){

	//Set up the toggling functionality on the events page for the events details
	$(".show-event").next(".event-details").css("display", "none");
	$(".show-event").click(function(event) {
		$(this).toggleClass("open").next(".event-details").slideToggle();
		if ($(this).hasClass("open")) { $(this).text("Hide information"); } else { $(this).text("Show more information"); }
		return false;
	});
	
});
























