blob: c9105c37223a3972a20dae89ea693ec2ac7d5cf9 [file]
$(function(){
$(".expand > h1").toggle(
function(){$(this).parent(".expand").find(".expander").slideUp('fast');},
function(){$(this).parent(".expand").find(".expander").slideDown('fast');}
);
});