$(document).ready(function() {
	$(".hidden").hide();
	$(".notice").append("(kliknij na tytuł, aby zobaczyć więcej informacji)");
	$(".show").css({cursor: "pointer", "font-weight": "normal"});
	$(".show").click(function() {
		var temp = ($(this).css("font-weight") == 400 ? "bold" : "normal");
		$(this).css("font-weight", temp);
		$(this).next().animate({opacity: 'toggle', height: 'toggle'}, "fast", 0, 0);
	})
})
