$(document).ready(function() { $("div#carrousel_container").addClass("has_js"); $("div#carrousel_controls").addClass("has_js"); $('div#carrousel_container').cycle({ fx: 'fade', speed: 'slow', timeout: 6000, pager: '#nav', height: '292px', containerResize: 0 }); $('a#btn_start').hide(); $('a#btn_stop').click(function() { $('div#carrousel_container').cycle('pause'); $('a#btn_stop').hide(); $('a#btn_start').show(); }); $('a#btn_start').click(function() { $('div#carrousel_container').cycle('resume'); $('a#btn_start').hide(); $('a#btn_stop').show(); }); });