jQuery(document).ready(function(){loadGallery(true,'a.large-img-programme');function disableButtons(counter_max,counter_current){jQuery('#show-previous-image, #show-next-image').show();if(counter_max==counter_current){jQuery('#show-next-image').hide();}else if(counter_current==1){jQuery('#show-previous-image').hide();}}
function loadGallery(setIDs,setClickAttr){var current_image,selector,counter=0;jQuery('#show-next-image, #show-previous-image').click(function(){if(jQuery(this).attr('id')=='show-previous-image'){current_image--;}else{current_image++;}
selector=jQuery('[data-image-id="'+current_image+'"]');updateGallery(selector);});function updateGallery(selector){var jQuerysel=selector;current_image=jQuerysel.data('image-id');jQuery('#image-gallery-caption').text(jQuerysel.data('caption'));jQuery('#image-gallery-title').text(jQuerysel.data('title'));jQuery('#image-gallery-image').attr('src',jQuerysel.data('image'));disableButtons(counter,jQuerysel.data('image-id'));}
if(setIDs==true){jQuery('[data-image-id]').each(function(){counter++;jQuery(this).attr('data-image-id',counter);});}
jQuery(setClickAttr).on('click',function(){updateGallery(jQuery(this));});}});