$(function(){

  $(".geot").hover(
    function () {
      var titl = $(this).attr("title");
      $(".geo_info"+titl).show();
    },
    function () {
      $(".geo_info").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);}

