$(document).ready(
 function() 
    {
		var elementHeight = [];
		//$('div#tresc').children().slice(3, 10).toggle("slow");
		$('#tresc').children().filter(':lt(3)').filter(':last').append(' <a id="pokaz" href="#">Rozwiń...</a>');
		//znaczniki start i stop
		$('#wstep').next().after('<span id="astart"></span>');
		$('h2').before('<span id="astop"></span>');
		$('#astart').nextUntil('#astop').hide();
		
		$('a#pokaz').click(function() {
		
		$('#astart').nextUntil('#astop').slideToggle("fast");        if($('a#pokaz').text()=="Zwiń"){$('a#pokaz').text("Rozwiń...");}        else {$('a#pokaz').text("Zwiń");}
			
		return false;
			
		});
	
	     
    }

	
);
