$(document).ready(function() {
    $("tr td.toggle").click(function() {
        if($(this).parent().parent().children("tr.limit").css("display")=="none") {
            $(this).html("Zwiń");
            $(this).addClass("toggle_top");
            $(this).parent().parent().children("tr.limit").css("display", "block");
            $(this).parent().parent().children("tr.limit").css("display", "table-row");
        } else {
            $(this).html("Rozwiń");
            $(this).removeClass("toggle_top");
            $(this).parent().parent().children("tr.limit").css("display", "none");
        }
    });
});