(function($){ //fonction sans conflit $ $( "#branding" ).append( '' ); // ajoute image nouvelle année var images = "#branding > img" // image selector , interval = 4500 // milliseconds between transitions , index = 1 // starting index , count = $(images).length // image count // the transition loop , handle = setInterval(function() { // fade out the current image $(images + ":eq(" + index + ")").fadeOut('slow'); // get the next index, or cycle back to 0 if (++index === count) index = 0; // fade in the next image $(images + ":eq(" + index + ")").fadeIn('slow'); } , interval ) , stop = function(){ clearInterval(handle); }; })(jQuery);//fin fonction sans conflit $