(function($) {
  Galleria.addTheme({
    name: 'slideshow',
    author: 'Galleria',
    version: '1.0',
    css: 'galleria.slideshow.css',
    defaults: {
      thumbnails: false,
      autoplay: true,
      transition: 'fade',
      transition_speed: 1000,
      show_counter: false,
      show_info: false,
      show_imagenav: false,
      debug: true
    },
    init: function(options) {
      this.$('loader').show().css('opacity',.4)
      this.bind(Galleria.LOADSTART, function(e) {
        if (!e.cached) {
          this.$('loader').show().fadeTo(200, .4);
        }
      });
      this.bind(Galleria.LOADFINISH, function(e) {
        this.$('loader').fadeOut(200);
      });
    }
  });
})(jQuery);

