$(document).ready(function(){
  $('.showmemore').click(function() {
    $(this).next().toggle();
  });
});