jQuery(document).ready(function() {
	$("a.maces").fancybox();
	
	$("#seti").click(function() {
		$.fancybox({
			//'orig'			: $(this),
			'padding'		: 0,
			'href'			: 'images/maces/seti_mace.jpg',
			'title'   		: 'Pharaoh Seti I wielding a mace against an enemy.',
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		});
    });
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
	    return '<div id="maces-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/images/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
	}

	$(".maces").fancybox({
	    'showCloseButton'   : false,
		'titlePosition' 	: 'outside',
		'titleFormat'		: formatTitle,
		'centerOnScroll'	: true,
		'titleFromAlt'		: true 
		
	});
});
