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