$(document).ready(function() {
	$("ul.tree li ul:not(.exp)").hide(); //defaultne je strom zavreny
	$("ul.tree li a.expand").click(function() {
		//$(this).hide();
		//
		if($(this).siblings().is(":visible")) {
            $(this).siblings().hide("slow");
        }else {
            $(this).siblings().show("slow");
        }
		//alert(daco);
        if($(this).siblings().children().is("li")) {
          //  alert(false);
            return false;
        }
	});
	var href = document.createElement("a");
	
	$("table img").each(function() {
		var el = $(this);
		var src = "/core/foreign/thumbgen/phpThumb.php?src=" + el.attr("src").replace("..","") + "&aoe=1&wp=300";
		el.wrap("<a href=\""+src+"\"></a>");
	});
	
	$("table a").fancybox();
	
})
