(function($) {
	$(function() {
		$(".toggle-content").hide();
		$("a[rel=toggle]").addClass('toggle');
		
		/* toggle */
		$("a[rel=toggle]").click(
			function() {
				$(this).toggleClass("open");
				$("#toggle-content-" + this.id.replace('toggle-','')).slideToggle("fast");
				return false;
			}
		);
	});
})(jQuery);
