 $(document).ready(function() {
        $(".ch_code_container").before("<a href=\"#\" class=\"show\">Zaawansowana wyszukiwarka</a>").hide();
        $("a.show").click(function() {
                $(this).next(".ch_code_container").slideToggle("slow");
                return false;
        }).toggle(function() { $(this).text('zwiń'); }, function() { $(this).text("Zaawansowana wyszukiwarka"); });
 });
