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