$(document).ready(function( ) {
	$('.activebody').hide();
	$('.activesection h4').toggle(
		function() {
			$(this).next('.activebody').fadeIn();
			$(this).addClass('close');
		},
		function() {
			$(this).next('.activebody').fadeOut();
			$(this).removeClass('close');
		}
	); // end toggle
});