$(document).ready(function() {
	$('.expandable-content').hide();
	$('.expandable-content').css('margin-top', $('.expandable-header').css('margin-bottom'));
	$('.expandable-content p').css('margin', 0);
	$('.expandable-content p').css('margin-bottom', '10px');
	$('.expandable-header').css('margin-bottom', 0);
	$('.expandable-header').css('cursor', 'pointer');
	$('.expandable-header').click(function(){
		$(this).next('.expandable-content').slideToggle(200);
	});
});
