I think you are looking for an accordion:
http://jqueryui.com/demos/accordion/
However, if you want to open several sections, check out this part of the accordion documentation (overview):
jQuery(document).ready(function(){
$('.accordion .head').click(function() {
$(this).next().toggle();
return false;
}).next().hide();
});
Or animated:
jQuery(document).ready(function(){
$('.accordion .head').click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
});