$(function() {
	$('.HIDDEN').hide();
	$('ul li b')
	.css({textDecoration: "underline", cursor: "pointer"})
	.bind("click", 
		function() {
			$('.HIDDEN').hide('fast');
			$('ul li b').css({color: "black", textDecoration: "underline"});
			$(this).css({color: "#0087D0", textDecoration: "none"}).siblings('span.HIDDEN').show('slow');
		}
	);
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + '. obrázek z ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});

