> If there are three slideshows on one page, is there a way to PAUSE
> slideshows B & C when hovering over A?

var $slideshows = $('#A,#B,#C').cycle({
    // options
    speed: 700,
    timeout: 3000
});

$slideshows.hover(
        function() { $slideshows('pause');  },
        function() { $slideshows('resume');     }
);

Reply via email to