jQuery(document).ready(function() {
	initPhotos();
	
	// zakaze autovyplnovani policek formulare
	jQuery('input.disable-ac').attr('autocomplete', 'off');
	
	jQuery(document).ajaxStart(function(){
		jQuery.fancybox.showActivity();
	});
	jQuery(document).ajaxStop(function(){
		jQuery.fancybox.hideActivity();
	});
});

function initPhotos() {
	// editor fotogalerie
	jQuery('a.photogallery').attr('rel','photogallery');
	jQuery('a[rel=photogallery]').fancybox();
	// modul fotogalerie
	jQuery('a[rel=plg-photogallery]').fancybox({
		'transitionIn'   : 'none',
		'transitionOut'  : 'none',
		'titlePosition'  : 'inside',
		'titleFormat'    : function(title, currentArray, currentIndex, currentOpts) {
			return jQuery('#' + currentArray[currentIndex].id + '-description').html();
		}
	});
}

