$().ready(function() {   
   $('div.more').hide().before('<a class="showMore" href="">Czytaj dalej &raquo;</a>')
      .prev().toggle(function() {
            $(this).next().slideDown();
         }, function() {
            $(this).next().slideUp();
         });   
});
