
jQuery(document).ready(function() {

  jQuery('#galerie-ajax').fancybox({
    'padding' : 0,
		'margin' : 100,
    'titleShow' : false,
    'transitionIn' : 'elastic',
    'transitionOut' : 'elastic',
    'showNavArrows' : false,
    'onComplete' : function() {
      jQuery('#galerie-caroussel').jcarousel({
			  'scroll' : 1,
				'itemVisibleInCallback' : function(carouselO,liO,indexO,stateO) {
				  if( 1 == indexO ) {
					  // On déplace la flèche si on affiche la première page de la galerie
						jQuery('div.jcarousel-next.jcarousel-next-horizontal').addClass('jcarousel-first-next-horizontal');
					} else {
						jQuery('div.jcarousel-next.jcarousel-next-horizontal').removeClass('jcarousel-first-next-horizontal');
					}
				}
      });
    }
  });

});

