$(document).ready(function() { var $books = $('#books').cycle({ timeout: 2000, speed: 200, pause: true }); if ( $.cookie('cyclePaused') ) { $books.cycle('pause'); } var $controls = $('
').insertAfter($books); $('').click(function(event) { event.preventDefault(); $books.cycle('pause'); $.cookie('cyclePaused', 'y'); }).appendTo($controls); $('').click(function(event) { event.preventDefault(); $('ul:paused').cycle('resume'); $.cookie('cyclePaused', null); }).appendTo($controls); $books.hover(function() { $books.find('.title').animate({ backgroundColor: '#eee', color: '#000' }, 1000); }, function() { $books.find('.title').animate({ backgroundColor: '#000', color: '#fff' }, 1000); }); });