$(document).ready(function() {

  // external links
  $(function() {
    $("a:not([href*='axorclub.cz'])").click(function(){
      window.open(this.href);
      return false;
    }).attr("title", this.title + " [externí odkaz]");
  });

  // illustration
  $("#slider").easySlider({
    auto: false,
    continuous: false,
    numeric: true,
    title: "Poslední fotogalerie"
  });

  // lightbox
  $(function() {
    $('div.photogallery a[rel*=lightbox]').lightBox({
     fixedNavigation:true,
	   containerResizeSpeed: 350,
	   txtImage: 'Obrázek',
	   txtOf: 'z'
   });
  });

  $(function() {
    $('div.upcoming-events a[rel*=lightbox]').lightBox({
     fixedNavigation:true,
	   containerResizeSpeed: 350,
	   txtImage: 'Obrázek',
	   txtOf: 'z'
   });
  });

});

