(function ($) {
  $.fn.vAlign = function() {
    return this.each(function(i){
      var h = $(this).height();
      var ph = $(this).parent().height();
      var mt = (ph - h) / 2 - 2;
      if (mt<0) { mt=0; }
      //alert('span:' + h + 'px, a:' + ph + 'px, padding-top:' + mt + 'px, ')
      $(this).css("padding-top", mt + "px");
    });
  };
})(jQuery);

$(document).ready(function()
  {
    $(".fotogalerie a").lightBox();
    $("#podobsah a").lightBox();
    $("#specifikace .spec p a").lightBox();
    $("#trysky a").lightBox();
    $("#produkt-left a").lightBox();
    $("#lightbox a").lightBox();
    $("#prislusenstvi .foto a").lightBox();
    
    $(".zalozka-detail").hide();
    var index = $("#produkt-zalozky ol li.act").attr("value")-1;
    $(".zalozka-detail:eq("+ index +")").show();


    $("#produkt-zalozky ol li a").click(function(){
      return false;
    });

    $("#produkt-zalozky ol li a").click(function(){
      $("#produkt-zalozky ol li").removeClass("act");
      $(this).parent("li").addClass("act");
      var index_click = $(this).parent("li").attr("value")-1;
      $(".zalozka-detail").hide();
      $(".zalozka-detail:eq("+ index_click +")").show();
    });

    // dodaci adresa
    if ($("#dodaci_adresa:checked").length) {
      $("#block-dodaci-adresa").show();
    } else {
      $("#block-dodaci-adresa").hide();
    }

    $("#dodaci_adresa").click(function(){
      if ($("#dodaci_adresa:checked").length) {
        $("#block-dodaci-adresa").show();
      } else {
        $("#block-dodaci-adresa").hide();
      }
    });

    // vertikalni vycentrovani menu
    $("#eshop-menu li a span").vAlign();

  });

