$('#event_page').ready(function() {
	
	// hide event sections
	$('.event_section').not('#event_section_information').children('div').hide();
	
	// toggle hide/show when event sections are clicked
	$('.event_section')
		.click(function() {
			$(this).children('div').slideToggle();
		});	
	
	// set css styles for hovering over section headers
	$('.event_section h3').hover(
		function() {
			$(this).css({
				'cursor': 'pointer',
				'borderColor': '#cccccc'
			});
		},
		function() {
			$(this).css({
				'borderColor': '#000000'
			});
		}
	);
	
});

