$(document).ready(function(){
  // hide all the content panes when the page loads
  $( '#popular > div' ).hide();
  

  $('#popular h3').click(function() {
    $(this).next().animate( 
	    {'height':'toggle'}, 'slow', 'easeInOutQuad'
    );
  });
});
