
$(document).ready(function() {
    
   //$('#nd_liturgia div:first').hide();
   $('#nd_liturgia').next('p:first').hide();
   $('.nd_wstep').hide();
   
   $('#newsOpoka b').toggle(function(){
       $('#newsOpoka li.hide').slideDown('fast');
       $(this).html('zwiń >>');
   }, function(){
       $('#newsOpoka li.hide').slideUp('fast');
       $(this).html('więcej >>');
   });
});
