
$(function() {
	$('.expander-link').click(function() {
		$(this).next('.expander-content').toggle();
	});
});

