jQuery(function() {
   jQuery(".xpoints-toggle").click(function() {
		jQuery(this).next().slideToggle();
		if(jQuery(this).attr("title") == "Rozwiń") {
			jQuery(this).attr("title", "Zwiń");
			jQuery(this).css("background", "#ECF4F7 url(/strona/images/arrow-up.jpg) no-repeat");
		} else {
			jQuery(this).attr("title", "Rozwiń");
			jQuery(this).css("background", "#ECF4F7 url(/strona/images/arrow-down.jpg) no-repeat");
		}
	});
});