$(document).ready(function() {
    $('#cortina').fadeOut(3000);
    
    $("a[rel=grupo-lightbox]").fancybox({
        'transitionIn'		: 'fade',
        'transitionOut'		: 'fade',
        'titlePosition' 	: 'over',
        'titleFormat'		: function(titulo, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over"><!-- Producto ' + (currentIndex + 1) + ' / ' + currentArray.length + "-->" + (titulo.length ? '' + titulo : '') + '</span>';
        }
    });
    $("a[id=fotoProductoAdminLista]").fancybox({
        'transitionIn'		: 'fade',
        'transitionOut'		: 'fade',
        'titlePosition' 	: 'over'
    });
    
});


