$(document).ready(function( ) {
 $('.description').hide();
 $('#content h3').toggle(
		function() {
	   
	    $(this).next().fadeIn();
		 $(this).addClass('close');
		},
		function() {
		  $(this).next().fadeOut();
			$(this).removeClass('close');
	  }
	); // end toggle
});

