$(document).ready(function() {
			/*
			*   Examples - images
			*/


			$("a.thickbox").fancybox({
				'centerOnScroll': false,
        'overlayOpacity': 0.8,
        'overlayColor': '#000',
        'titlePosition': 'outside',
        'titleFormat'		: formatTitle,
        'autoScale' : false,
        'speedIn': 500
			});

		});



function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/data/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Obrázek ' + (currentIndex + 1) + ' z ' + currentArray.length + '</div>';
}

