jQuery(document).ready(function() { $(".menuSecondaire li").each(function () { $(this).hover(function (){ $(this).children("span").addClass("hover"); }, function () { $(this).children("span").removeClass("hover"); }); }); $("#listeDomaines li a").each(function () { $(this).hover(function (){ $(this).children("span").addClass("hover"); }, function () { $(this).children("span").removeClass("hover"); }); }); $('#bandeau > ul').jcarousel({ wrap: 'circular', auto: 4, scroll : 1, initCallback: mycarousel_initCallback }); function mycarousel_initCallback(carousel) { // Pause autoscrolling if the user moves with the cursor over the clip. carousel.clip.hover(function() { carousel.stopAuto(); }, function() { carousel.startAuto(); }); } });