$(document).ready(function() {
  
  // Setup jQuery Tool Scrollable
  $('.scrollable').scrollable();
  
  // Setup basic jQuery Cycle
  $('.cycle').cycle({
    pause: true,
    timeout: 8000
  });
  
  // Setup jQuery Cycle with prev/next links
  $('#featured-videos .cycle-nav').cycle({
    next: '#next-video',
    pause: true,
    prev: '#prev-video',
    timeout: 8000
  });
  
  $('.jp-play').click(function() {
    $('.jp-playlist').addClass('playing');
  });  
  $('.jp-pause').click(function() {
    $('.jp-playlist').removeClass('playing');
  });
  
});
