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 && jQuery(".pressImageCopy").html() != "") {
	    return '<div id="fancybox-title-custom">' + (title && title.length ? '' + title + '' : '' ) + '<br />' + (currentIndex + 1) + '/' + currentArray.length + '<br /><span class="fancyboxCopyright">' + jQuery(".pressImageCopy").html() + '</span></div><div class="clear"></div>';
	}
	else if(title && jQuery(".pressImageCopy").html() == "") {
	    return '<div id="fancybox-title-custom">' + (title && title.length ? '' + title + '' : '' ) + '<br />' + (currentIndex + 1) + '/' + currentArray.length + '</div>';
	}
	else if(!title && jQuery(".pressImageCopy").html() != "") {
	    return '<div id="fancybox-title-custom">' + (currentIndex + 1) + '/' + currentArray.length + '<br /><span class="fancyboxCopyright">' + jQuery(".pressImageCopy").html() + '</span></div><div class="clear"></div>';
	}
    return '<div id="fancybox-title-custom">' + (currentIndex + 1) + '/' + currentArray.length + '</div>';
}
