jQuery(function() {
  
  // Check out http://api.jquery.com/
  
  // Expects 'href' attribute of each 'a' to point to large version of image
  $('a.lightbox').lightBox({
    imageLoading: '/images/lightbox/ico-loading.gif',
    imageBtnClose: '/images/lightbox/btn-close.gif',
    imageBtnPrev: '/images/lightbox/btn-prev.gif',
    imageBtnNext: '/images/lightbox/btn-next.gif'
  });
  
  // Expects container with images
  $('.cycle').cycle({
    timeout: 3000,
    speed: 3000,
    delay: 0
  });
  
  // Open external links in new tab
  $('a[href^="http://"]').attr('target', 'blank');
  
});
