$(document).ready(function() {

	$('.dailyevent_headline').click(function() {

		$(".dailyevent_headline").removeClass("expanded");
		$('.dailyevent_body').hide("fast");

		$(this).next('.dailyevent_body').slideToggle("fast");

		$(this).addClass("expanded");
		
	});

});
