// When the page is ready

$(document).ready(function(){
	$("#content-main .more").hide();
	$("#content-main .read-less").hide();
	$("#content-main .read-more a").click(function(event){
		//znajdz rodzica a nastepnie przejdz do kolejnego wezla
		$(this).parents("p").prev().toggle();
		//usun 2-gi wezel od konca
		$(this).parents("p").prev().prev().hide();
		//usun aktualny wezel
		$(this).parents("p").hide();
		$(this).parents("p").next().toggle();
		//$(this)
		// Stop the link click from doing its normal thing
		return false;
	});
	$("#content-main .read-less a").click(function(event){
		//znajdz rodzica a nastepnie przejdz do kolejnego wezla
		$(this).parents("p").prev().prev().prev().toggle();
		//usun 2-gi wezel od konca
		$(this).parents("p").prev().prev().hide();
		$(this).parents("p").prev().toggle();
		$(this).parents("p").hide();
		//$(this)
		// Stop the link click from doing its normal thing
		return false;
	});
});