(function($) {
	$.fn.section = function() {

		//$("body").addClass("sectioned");

		$(this).each(function() {
			$('div.content', this).wrap('<div class="body" />');

			var $body = $('div.body', this);
			$body.before('<div class="header"></div>');
			$body.after('<div class="footer"></div>');
		});

		return $;
	};
})(jQuery);
