$(document).ready(function() {

   $('#post-20 .ans').addClass('hide');
   $('#post-20 h4').wrapInner('<a href="#"></a>');
   
   $('#post-20 h4').toggle(function(){
         $(this).next().removeClass('hide');
      }, function(){
         $(this).next().addClass('hide');
	  }
   );

});

