/**
 * Scripts de la home page
 */
jQuery("document").ready(function($){

    $('.ad-thumb-list > li').each(function(){
        $(this).children("a").children("img").attr('longdesc', '');
        $(this).children("a").children("img").attr('title', '');
    });
    
    var galleries = $('.ad-gallery').adGallery({
        slideshow: {
            enable: true,
            autostart: true,
            speed: 5000,
            stop_on_scroll: true
        },
        cycle: true,
        callbacks: {
            init: function(){
                $(".linkMain").attr('href', $(".ad-active").next().attr('value'));
                $(".linkMain").html($(".ad-active").attr('rel'));
				$(".ad-image").click(function() { document.location.href = $(".linkMain").attr('href'); });
            },
            
            afterImageVisible: function(){
                $(".linkMain").attr('href', $(".ad-active").next().attr('value'));
                $(".linkMain").html($(".ad-active").attr('rel'));
				$(".ad-image").children("img").click(function() { document.location.href = $(".linkMain").attr('href'); });
                
            }
        }
    });
    
});

