/* Start */
$(document).ready(function() {
    
   $("#right").find(".offer").each(function(i) {
     $(this).css("display", "none");
   });

   $("#right").find(".show").each(function(i) {
     $(this).css("display", "block");
   });


	$("#right ul li a").click(function(){
		$(this).next(".offer").slideToggle("slow");
		return false;
	});

   $("#left").find(".next").each(function(i) {
     $(this).css("display", "none");
   });

    var x = true;

	$("#left .p_r a").click(function(){
		$("#left .next").slideToggle("slow");
		if(x) {
		     $(this).text("Ukryj tekst");
		     x = false;
		}
		else {
		    x = true;
		    $(this).text("Czytaj dalej");
		}
		return false;
	});

// Koniec

});

