blob: ba6f622150367cbcff0a1cecc5d3944699cf79e4 (
plain)
1
2
3
4
5
6
7
8
|
$(function(){
$(".expander").hide();
$(".expand > h1").toggle(
function(){$(this).parent(".expand").find(".expander").slideDown('fast');},
function(){$(this).parent(".expand").find(".expander").slideUp('fast');}
);
});
|