$(document).ready(function() {

	$("a[rel=etc_photos_left]").fancybox({
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("#etc_photos_left_more").click(function() {
		$.fancybox([
				'/gfx/fotok/epulet_03.jpg',
				'/gfx/fotok/epulet_04.jpg',
				'/gfx/fotok/epulet_05.jpg',
				'/gfx/fotok/epulet_06.jpg',
				'/gfx/fotok/epulet_07.jpg',
				'/gfx/fotok/epulet_08.jpg',
				'/gfx/fotok/epulet_09.jpg',
				'/gfx/fotok/epulet_10.jpg',
				'/gfx/fotok/epulet_11.jpg',
				'/gfx/fotok/epulet_12.jpg',
				'/gfx/fotok/epulet_13.jpg',
				'/gfx/fotok/epulet_14.jpg',
				'/gfx/fotok/epulet_15.jpg',
				'/gfx/fotok/epulet_16.jpg',
				'/gfx/fotok/epulet_17.jpg',
				'/gfx/fotok/epulet_18.jpg',
				'/gfx/fotok/epulet_19.jpg',
				'/gfx/fotok/epulet_20.jpg',
				'/gfx/fotok/epulet_21.jpg',
				'/gfx/fotok/epulet_22.jpg',
				'/gfx/fotok/epulet_23.jpg',
				'/gfx/fotok/epulet_24.jpg',
				'/gfx/fotok/epulet_25.jpg',
				'/gfx/fotok/epulet_26.jpg'
			], {
				'padding'					: 0,
				'type'						: 'image',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			}
		);
	});

});