// JavaScript Document
(function($) {
$(document).ready(function(){
		
			//Hide (Collapse) the toggle containers on load
			$('.events_box').hide(); 
			
			//Slide up and down on click
			$('h2.event_title').click(function(){
				$(this).next('.events_box').animate({opacity: 'toggle', height: 'toggle'}, 1000);
			});
		
		});
	}) (jQuery);