$(document).ready(function(){
  $("h3.toggle").click(function(){
    $(this).next().animate(
	{height: "toggle", opacity: "toggle"}, "1500")
  });
});