$(document).ready(function() {

   // ***************************************************************************
   // nastaveni date picker      
   $('.input-text-date').datepicker({ dateFormat: 'yy-mm-dd', changeMonth: true, changeYear: true });  
   $(".input-text-date").datepicker($.datepicker.regional['cs']);   
   $('.birthday').datepicker('option', 'yearRange', '1910:2019');
   
   
   $("#tabs_public").tabs({ cookie: { expires: 30 } });

   
   
   $(function() {
   	// Use this example, or...
   	//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
   	// This, or...
   	$('#page_images a').lightBox({   			
   			imageLoading: '/media/public/images/lightbox-ico-loading.gif',
   			imageBtnClose: '/media/public/images/lightbox-btn-close.gif',
   			imageBtnPrev: '/media/public/images/lightbox-btn-prev.gif',
   			imageBtnNext: '/media/public/images/lightbox-btn-next.gif',   			
   			txtImage: 'Obrázek',
   			txtOf: 'z'		
   }); // Select all links in object with gallery ID
   	// This, or...
   	//$('a.lightbox').lightBox(); // Select all links with lightbox class
   	// This, or...
   	//$('a').lightBox(); // Select all links in the page
   	// ... The possibility are many. Use your creative or choose one in the examples above
   });
   

});



