$(document).ready(function() {
	$(".rozwijany").click(function() {
		$(this).next().slideToggle(1000);
	});
});
