//collapsable content to show/hide "read more" text
$(document).ready(function( ) {
 $('.more-details').hide();
 $('#content h5').toggle(
	function() {
	   $(this).next('.more-details').fadeIn();
		 $(this).addClass('close');
	},
	function() {
		  $(this).next('.more-details').fadeOut();
			$(this).removeClass('close');
	 }
	); // end toggle
	
	$('h3.archive-title').css({'cursor': 'pointer'}).next('.archive').hide();
	$('h3.archive-title').click(function(){
		$(this).next('.archive').toggle();
	});
}); //end document ready

