$(function(){
  $("#accordion").accordion({event: "mouseover",autoHeight: false});

  $(".club1_img4").hover(
    function () {
      $(".club_opis").show();
    },
    function () {
      $(".club_opis").hide();
    }
  );

  $(".tab_ul > li").click (
    function () {
      var titl = $(this).attr("title");
      $(".tab_ul > li").removeClass('act');
      $(this).addClass('act');
      $(".tab_rezult").hide();
      $(".tab_rezult"+titl).show(800);
    }
  );
});

function opn_b() {$(".opened_block").toggle(800);}
