$(function(){
$(".section>h1").click(
function(){
	if($("."+$(this).attr('id')+":hidden").length==0) {$("."+$(this).attr('id')).hide();}
	else {$("."+$(this).attr('id')).show();}
}
);
});

