$(document).ready(function() {
    $("a#featured_hunting_photo").fancybox({
    'titlePosition'	: 'over'
    });
	$("a#featured_scout_photo").fancybox({
    'titlePosition'	: 'over'
    });
	
	$("a[rel=hunting-gallery]").fancybox({
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'titlePosition' 	: 'over',
	'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
	    return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
	    }
	});
	$("a[rel=video-gallery]").fancybox({
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
	$("a[rel=scout-gallery]").fancybox({
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'titlePosition' 	: 'over',
	'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
	    return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
	    }
	});
});
