$(function() {
var galleries = $('.ad-gallery').adGallery({
  loader_image: 'loader.gif',
  width: 580, // Width of the image, set to false and it will read the CSS width
  height: 387, // Height of the image, set to false and it will read the CSS height
  slideshow: {
    enable: true,
    autostart: true,
    speed: 5000,
    start_label: '',
    stop_label: '',
    stop_on_scroll: false, // Should the slideshow stop if the user scrolls the thumb list?
    countdown_prefix: '(', // Wrap around the countdown
    countdown_sufix: ')',
    onStart: function() {
      // Do something wild when the slideshow starts
    },
    onStop: function() {
      // Do something wild when the slideshow stops
    }
  }
});
});

