$(function () {
	$("h3.toggleable a").toggle(function () {
		$(this).children(".action").text("Hide");
		$(this).parents(".item").children(".slide").slideDown(500);
	}, function () {
		$(this).children(".action").text("Show");
		$(this).parents(".item").children(".slide").slideUp(500);
	})
});