$(function(){
  $('.showmore').click(function(){
    $(this).parent('p').find('.showhide').fadeIn('slow');
    $(this).hide();
    return false
  });
});