(function($) {
$.fn.sectionDrawers = function() {
	$(this).each(function() {
		var that = this;
		this.article = $(this);
		this.sections = $('section', this.article);
		this.heading = $('h3', this.sections);
		this.content = $('div', this.sections);
		this.content.hide();
		this.heading.addClass('collapsed');
		this.heading.toggle(function() {
			$(this).removeClass('collapsed');
			$(this).parent('section').children('div').fadeIn('fast');
		}, function() {
			$(this).addClass('collapsed');
			$(this).parent('section').children('div').fadeOut('fast');
		});
	});
};
})(jQuery);
