var spotlight =
{
  init: function()
  {
    $.lazy({
      src: 'js/jquery.cycle.js',
      name: ['cycle'],
      cache: true
    });

    $('#spotlight').cycle();
  }
}

$(function()
{

  spotlight.init();

  $('a[rel*=external]').live('click', function()
  {
    $(this).attr('target', '_blank');
  })
});

