$(document).ready(function()
{
	$('.s_pagina:visible').hide();
	$('.pagination .showallpages').click(function() {
		$(this).parent('.pagination').children('.s_pagina:hidden').fadeIn('400');
		return false;
	});
	
	$("a.reveal").click(function(){
		$(this).parents("p").children("span.spoiler").animate({ opacity: 'toggle' }, 'slow');
	});
	$("a.reveal").parents("p").children("a.reveal").toggle(
		function () {
			$(this).fadeOut('fast', function() { $(this).html("[Schowaj]").fadeIn('fast'); $(this).animate({ color: "#800000" }, 400); });
		},
		function () {
			$(this).fadeOut('fast', function() { $(this).html("[Poka&#380;]").fadeIn('fast'); $(this).animate({ color: "#FF4500" }, 400); });
		}
	);
});


