$(document).ready(function() {
  $('span.readmore').click(function() {
    $(this).parent().hide();
    $(this).parent().next().show();
  });
});
