    $(function() {
        $('.list-image a').lightBox({singleImage:true});
    });

    $(function() {
        $('#gallery a').lightBox();
    });
    $(function() {
        $('.image a').lightBox();
    });

    function printRek(){
      var win = window.open('/print.php','obj','width=670,height=740,left=50,top=50,scrollbars=yes,resize=0,status=yes');
      win.focus();
    }

    function validateFrm(){
      msg = "";

      if (document.objednaj.meno.value == "")
        msg = "meno.";
      else if (document.objednaj.priezvisko.value == "")  msg = "priezvisko";
      else if (document.objednaj.ulica.value == "")       msg = "ulicu.";
      else if (document.objednaj.mesto.value == "")       msg = "mesto.";
      else if (document.objednaj.psc.value == "")         msg = "psc.";
      else if (document.objednaj.mobil.value == "")       msg = "mobil.";
      else if (document.objednaj.email.value == "")       msg = "e-mail.";

      if(document.objednaj.email.value != ""){
        if (document.objednaj.email.value.indexOf ('@',0) == -1 || document.objednaj.email.value.indexOf ('.',0) == -1)
          msg = "spravne mailovu adresu!";
      }

      if (msg != ""){
        alert ("Vyplnte " + msg);
        return false;
      }
      else
        return true;
    }
