<script>
<? if( have_rows('galls') ): ?>
<? $numg = 1; ?>
<? while( have_rows('galls') ): the_row(); ?>
<? $images = get_sub_field('gall'); ?>
<? if( $images ): ?>
var photos<?=$numg;?> = [
<? foreach( $images as $image ): ?>
{src: '<? echo $image['url']; ?>'},
<? endforeach; ?>
];
$("ul.fancybox-list li:eq(<?=$numg-1;?>) a").on('click', function(event) {
$.fancybox.open(photos<?=$numg;?>,{});
event.preventDefault();
});
<? endif; ?>
<? $numg = $numg +1; ?>
<? endwhile; ?>
<? endif; ?>
</script>