$(document).ready(function() {

			$("a[rel=gallery]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Obrázek ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
			$("a.fb_show").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'width'           : '960',
				'height'           : '600',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over"><b>Otáčení:</b> <b>pohyb myší</b> a stisknuté <b>levé tlačítko</b>&nbsp;&nbsp;&nbsp;&nbsp;||&nbsp;&nbsp;&nbsp;přiblížení / oddálení: klávesy <b>SHIFT / CTRL</b></span>';
				}
			});
			
			$('.fb_show').click(function() {			 
			 _gaq.push(['_trackPageview', this.href]);       
      });
      
      $("a[rel=gallery]").click(function() {		 
			 _gaq.push(['_trackPageview', this.href]);       
      });
			
		});
