$(document).ready(function()
{
  $('a[rel*=external').live('click', function()
  {
    $(this).attr('target', '_blank');
  });
  
  var carousel = $('#carousel').cycle({
    timeout: 0,
    after: function(currSlideElement, nextSlideElement, options)
    {
      var img = $(nextSlideElement).find('img');
      $('#image-description').html(img.data('description'));
    },
    pager: '#navigation',
    pagerAnchorBuilder: function(idx, slide) { 
      return '<a href="#">&bull;</a>'; 
    }
  });
  
  var homeCarousel = $('#home-carousel').cycle({
    timeout: 2900
  });
  
  $('#carousel img').live('click', function(){
    carousel.cycle('next');
  });
});
