$(function(){
    $('.produits').slides({
        preload: true,
        preloadImage: BASE_URL + 'assets/images/css_front/gammes_produits/loading.gif',
        container: 'produits_container',
        play: 0,
        pause: 1000,
        hoverPause: true,
        generatePagination: false,
        generateNextPrev: false
    });

    //On mouse over those thumbnail
    $('.pdt').hover(function() {
        //Display the caption
        $(this).find('div.caption').stop(false,true).fadeIn(200);
        },
        function() {
            //Hide the caption
            $(this).find('div.caption').stop(false,true).fadeOut(200);
    });

    $('#tabs li a').featureList({
			output			:	'#output li',
			start_item		:	0,
                        transition_interval     :       2000
		});
});
