$(document).ready(function () {
	$(".wrap").hide();
	$("h2").toggle(
		function () {
			$(this).addClass("showing")
			$(this).next(".content").children(".wrap").slideDown("slow");
		},
		function () {
			$(this).removeClass();
			$(this).next(".content").children(".wrap").hide("slow");
		}
	);
});