jQuery(document).ready(function() {

	/* image gallery settings */
	jQuery("a#albumBigImg").fancybox({
		'transitionIn' : 'fade',
		'transitionOut' : 'fade',
		'speedIn' : 600,
		'speedOut' : 200,
		'overlayColor' : '#000',
		'titlePosition' : 'inside',
		'titleFormat' : formatTitle
	});
});


function formatTitle(title, currentArray, currentIndex, currentOpts) {
	if(title) {
	    return '<div id="fancybox-title-custom">' + (currentIndex + 1) + '/' + currentArray.length + '<br />' + (title && title.length ? '' + title + '' : '' ) + '</div>';
	}
    return '<div id="fancybox-title-custom">' + (currentIndex + 1) + '/' + currentArray.length + '</div>';
}
