$(document).ready(function(){
  function findNonFirstTablesForToggler(toggler) {
    return $(toggler).parent().parent().parent().find(".gallerine-non-first-table");
  }

  $(".photos-toggler").toggle(function() {
    findNonFirstTablesForToggler(this).slideDown("slow");
    $(this).html("&laquo; Sbalit");
  }, function() {
    findNonFirstTablesForToggler(this).slideUp("slow");
    $(this).html("Rozbalit &raquo;");
  });
});

