﻿$(function () {
    //var galleries = $('.ad-gallery').adGallery();

    var galleries = $('.ad-gallery').adGallery({
        loader_image: '../content/slide-images/loader.gif',
        display_next_and_prev: true, // Can you navigate by clicking on the left/right on the image?
        display_back_and_forward: true, // Are you allowed to scroll the thumb list?
        slideshow: {
            enable: true,
            autostart: true,
            speed: 5000,
            start_label: 'Start',
            stop_label: 'Stop',
            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
            }
        }//,
        //effect: 'slide-hori' // or 'slide-vert', 'resize', 'fade', 'none' or false
    });

    // Set image description
    //some_img.data('ad-desc', 'This is my description!');

    // Change effect on the fly
    galleries[0].settings.effect = 'fade';

    $('#switch-effect').change(
      function () {
          galleries[0].settings.effect = $(this).val();
          return false;
      });
});
