(function($){$(function(){$(document).on("click",".aktuality-has-more",function(e){var shownMore=!!$(this).data("shown");if(shownMore){$(this).closest(".aktuality").find("tr.more").fadeOut(function(){$(this).remove()});$(this).data("shown",false);$(this).text($(this).closest("td").data("more"))}else{var shownZs={};$(this).closest(".aktuality").find("tr[data-z]").each(function(){shownZs[$(this).data("z")]=true});$.ajax($(this).attr("href")).done($.proxy(function(data){var dataHtml=$(data);var insertBefore= $(this).closest("tr");dataHtml.find("tr[data-z]").each(function(){if(shownZs[$(this).data("z")])return;insertBefore.before($(this).addClass("more").fadeIn())});$(this).data("shown",true);$(this).text($(this).closest("td").data("less"))},this))}e.stopImmediatePropagation();return false})})})(jQuery);