jQuery(window).load(function() {
  var $ = jQuery;
  $('#featured').orbit({
    animation: 'horizontal-slide',
    animationSpeed: 400,
    timer: true,
    advanceSpeed: 4000,
    pauseOnHover: true,
    startClockOnMouseOut: true,
    startClockOnMouseOutAfter: 1000,
    directionalNav: false,
    captions: true,
    captionAnimation: 'slideOpen',
    captionAnimationSpeed: 400,
    bullets: true,
    bulletThumbs: false,
  });
  $('#staff-photos img.desaturated').pixastic('desaturate');
  $('#staff-photos canvas.desaturated').hover(function() {
      $(this).fadeTo(400, 0);
    }, function() {
      $(this).fadeTo(400, 1);
  });
  $('.staff-bio').not(':eq(0)').hide();
  $('.staff-photo').click(function() {
    $('.staff-photo.active').removeClass('active');
    $(this).addClass('active');
    var index = $(this).index()
    $('.staff-bio').eq(index).show();
    $('.staff-bio').not(':eq('+index+')').hide();
  })
});

