$(document).ready(function() {

/*
  // external links
  $(function() {
    $('div#page-content div.container a:not([href*="milvit.cz"])').each(function(){
      $(this).bind('click', function(){
        window.open(this.href);
        return false;
      }).attr("title", this.title + " [externí odkaz]");
    });
  });
*/

  // search form
  $('form#searching-form').bind('submit', function(){
    if ($('input#search-text').val() == '') {
      alert('Zadejte prosím hledaný výraz');
      return false;
    }
    if ($('input#search-text').val().length < 3) {
      alert('Hledaný výraz musí obsahovat alespoň tři znaky');
      return false
    }
  });

  // lightbox
  $(function() {
    $('div.photogallery a[rel*=lightbox]').lightBox({
     fixedNavigation:true,
	   containerResizeSpeed: 350,
	   txtImage: 'Obrázek',
	   txtOf: 'z'
   });
  });

});

