$(function() {
  // POVRCHY
    $(".povrchy .info").css({"bottom":"-52px","opacity":".8"});
    $(".povrchy .thickbox").each( function () {
      $(this).attr("title","");
    });
    
    $(".povrchy .img").hover(
      function () { $(this).children("a.thickbox").children("span.info").animate({"bottom":"3px"},"fast") },
      function () { $(this).children("a.thickbox").children("span.info").animate({"bottom":"-52px"},"fast") }
    );
  
  // KRAJE
    $("#prodejci-mapa a").click(function () {
      var ido = $(this).attr("rel");
      kraj_switch(ido);
      return false;
    });
    
    $("#side ul li a[rel!=]").click(function () {
      var ido = $(this).attr("rel");
      $("#side ul li").removeClass("active");
      $(this).parent().addClass("active");
      
      kraj_switch(ido);
      document.getElementById("flashobj").callToFlash(ido);
      
      return false;
    });
    
    $(".thickbox").fancybox({modal: true});

});

// PREPINANI KRAJU
  function kraj_switch(ido) {
    $(".prodejce").css("display", "none");
    $("."+ido).css("display", "block");
    $("#side ul li").removeClass("active");
    $("#side ul li[rel="+ido+"]").addClass("active");
    location.hash(ido);
    return false;
  }
