(function($) {
	$(function() {

		$('a.toggle').click(function() {
			var h = this.hash;
			$(h).toggle();
			return false;
		});

	});
})(jQuery);