	$(document).ready( function(){
		$("a.mundArtbeiz_galleries").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	true,
			'overlayOpacity':	0.3,
			'overlayColor'	:	'#eee',
			'titleFormat'	:	formatTitle,
			'showCloseButton'	: false
		});
		function formatTitle(title, currentArray, currentIndex, currentOpts) {
			return   '<table id="fancybox-title-float-wrap" cellspacing="0" cellpadding="0"><tbody><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'
			+ (title && title.length ? '<b>' + title + '</b>' : '' ) +  (currentArray.length > 1 ? ' &nbsp;&nbsp;<span style="font-size:10px;">' + (currentIndex + 1) + '/' + currentArray.length + '</span>' : '')
			+ '</td><td id="fancybox-title-float-right"></td></tr></tbody></table>';
		}

	});
// what is this

