$(document).ready(function(){	
	$("a.fb_link").fancybox({
		'width'				: '85%',
		'height'			: '85%',
		'autoScale'			: false,
		'type'				: 'iframe'
	});
	
	$("a.fb_image").fancybox({
		'titlePosition'	: 'inside'
	});
	
	$("a[rel=fb_gallery]").fancybox({
		'titlePosition' 	: 'inside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span>Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});