function rozwinWstep() {
	var $jq = jQuery.noConflict(); // by zapobiec konfliktom z Prototype
	if($jq('#wiecej').attr("class") == "more") {
		var id = "#calosc", link = "zwiń tekst", klasa = "less", czas = 1000;
	} else {
		var id = "#skrot", link = "czytaj więcej", klasa = "more", czas = 400;
	}
	var wysokosc = $jq(id).height();
	var tresc = $jq(id).html();
	$jq('#tresc-wstep').animate({ height: wysokosc }, { duration: czas, queue: false });
		$jq('#tresc-wstep').html(tresc);
		$jq('#wiecej').html(link);
		$jq('#wiecej').attr("class", klasa);
	return false;
}

function rozwinOferte(element) {
	element.style.display=none;
	return false;
}
