/* Fancybox --- */
jQuery(document).ready(function() {
	jQuery("a.fancy").fancybox({
		'opacity'		: true,
		'overlayShow'	: false,
		'transitionIn'	: 'opacity',
		'transitionOut'	: 'opacity',
		'titlePosition' 	: 'inside'


	}); 

	/*jQuery("a[rel=fancy-gallery]").fancybox({
    'transitionIn'		: 'opacity',
    'transitionOut'		: 'opacity',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});*/
});

