$(document).ready(function() {
   $('.employee').each(function(i) {
      $(this).click(function() {
         var index = i;
         // Deselect current shown bio
         $('.bio.current.show').removeClass('show').addClass('hide').removeClass('current');
         $('.employee div.name a.current').removeClass('current');
         // Select clicked employee
         $('#bio_'+index).removeClass('hide').addClass('show').addClass('current');
         $('#employee_'+index+' > div.name > a').addClass('current');
      });
   });
});
