$(document).ready(function(){
	$(".moreLink a").click(function(){
		$("#pageShow .more").show('slow');
		$(".lessLink a").show('slow');
		$(".moreLink a").hide('slow');
	});
	
	$(".lessLink a").click(function(){
		$("#pageShow .more").hide('slow');
		$(".lessLink a").hide('slow');
		$(".moreLink a").show('slow');
	});

	$(".collapse").hide().before('<div class="collapse_toggle">pokaż</div>');
	$(".collapse_toggle").click(function(){
		$(this).next().toggle('slow');
		$(this).hide('fast', function(){
			if ($(this).text() == 'ukryj')
				$(this).text('pokaż');
			else
				$(this).text('ukryj');

			$(this).show('fast');
		});
	});
});