$(document).ready(function() {

	/* This is basic - uses default settings */
	/* Apply fancybox to multiple items */
		//alert('hola');
	
	$("a[rel=example_group]").fancybox({
		'type'				: 'image',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Imagen ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});
	$("a.registro, a.publicar,a.reportar").fancybox({
		'width'				: 370,
		'height'			: 550,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$("a.enviar,a.lssi").fancybox({
		'width'				: 450,
		'height'			: 550,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$("a.identificarme,a.solicitar").fancybox({
		'width'				: 350,
		'height'			: 300,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$("a.invitar,a.invitame,#invitado").fancybox({
		'width'				: 350,
		'height'			: 450,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$("#reportar,#perfil,a.perfil").fancybox({
		'width'				: 700,
		'height'			: 450,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});

