$(function() {
    
    var galleries = $('.ad-gallery').adGallery({
		loader_image: '/view/default/img/loader.gif',
		start_at_index: 0,
		animation_speed: 400,
		description_wrapper: false,
        thumb_opacity: 0.7,
        animate_first_image: false,
        animation_speed: 400,
        width: false,
        height: false,
	    display_next_and_prev: true,
        display_back_and_forward: true,
        scroll_jump: 310, // If 0, it jumps the width of the container
        slideshow: {
			enable: true,
            autostart: true,
            speed: 5000,
            start_label: false,
            stop_label: false,
            stop_on_scroll: true,
            countdown_prefix: '(',
            countdown_sufix: ')',
            onStart: true,
            onStop: false
		},
        effect: 'fade', // or 'slide-vert', 'fade', or 'resize', 'none','slide-hori'
        enable_keyboard_move: true,
        cycle: true,
        callbacks: {
        	init: true,
            afterImageVisible: true,
            beforeImageVisible: true
		}
	});

    $('#switch-effect').change(
      function() {
        galleries[0].settings.effect = $(this).val();
        return false;
      }
    );
    $('#toggle-slideshow').click(
      function() {
        galleries[0].slideshow.toggle();
        return false;
      }
    );

});

