/**
 * @author dominik1
 */
$(document).ready(function(){
    $("#link").click(function(){
        $("#more").toggle("normal");
    }).toggle(function(){
        $(this).text('schowaj');
    }, function(){
        $(this).text("więcej");
    });
});

