<script type="text/javascript">
$(function(){
$("#panel .head").click(function(){
if($(this).next().is(":hidden"))
$(this).next().show(20000);
else
$(this).next().hide("20000");
})
})
</script>
11-04
129