$(document).ready(function() {
	
	$("div.listEl").find(".listElMore").click(function() {
		var toggler = $(this);
		$(this).parents(".listEl").find(".listElContent").toggle("normal", function() {
			if ($(this).is(":visible")) $(toggler).html('...ukryj'); else $(toggler).html('więcej...');
		});
		
	});
	
	$("table.list tr:odd").addClass("rowodd");
	
	$("table.list").find(".del").click(function() {
		var title = $(this).parents("tr").find(".delTitle:first").html();
		return confirm("Czy na pewno chcesz usunąć: " + title);
	});
	
});