﻿/**
 *  BY LUKAS JEVICKY, 2009
 *  homepage: www.jevicky.cz [czech]
 *  depends on jQuery 1.3.x +
 */
  var DOMAIN_NAME = "";
  
  $(document).ready(function() {

    $("a[rel=mm]").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>';
	  }
	});
	
	$("#podminky").fancybox({
	  'titlePosition'		: 'inside',
	  'transitionIn'		: 'none',
	  'transitionOut'		: 'none',
	  'autoDimensions'	    : false,
	  'width'				: '75%',
	  'height'				: '75%'
	});

  });
