$(document).ready(function() { var $books = $('#books').cycle({ timeout: 2000, speed: 200, pause: true, before: function() { $('#slider').slider('value', $('#books li').index(this)); } }); if ( $.cookie('cyclePaused') ) { $books.cycle('pause'); } var $controls = $('
').insertAfter($books); $('').click(function(event) { event.preventDefault(); $books.cycle('pause'); $.cookie('cyclePaused', 'y'); }).button({ icons: {primary: 'ui-icon-pause'} }).appendTo($controls); $('').click(function(event) { event.preventDefault(); var $paused = $('ul:paused'); if ($paused.length) { $paused.cycle('resume'); $.cookie('cyclePaused', null); } else { $(this).effect('shake', { distance: 10 }); } }).button({ icons: {primary: 'ui-icon-play'} }).appendTo($controls); $('
').slider({ min: 0, max: $('#books li').length - 1, slide: function(event, ui) { $books.cycle(ui.value); } }).appendTo($controls); $books.hover(function() { $books.find('.title').animate({ backgroundColor: '#eee', color: '#000' }, 1000); }, function() { $books.find('.title').animate({ backgroundColor: '#000', color: '#fff' }, 1000); }); $('h1').click(function() { $(this).toggleClass('highlighted', 'slow', 'easeInExpo'); }); $books.find('.title').resizable({ handles: 's' }); });