var spotlight =
{
  init: function()
  {
    $('#spotlight ul').cycle({
      next: '.next',
      prev: '.prev',
      speed: 'slow',
      timeout: '8000'
    });
  }
};

$(document).ready(function(){
  spotlight.init();
});

