$("a.slider").live("click", function(){
  $(".scroll").slideUp();
  $("#prev,#next").addClass("hidden");
  // Load content through the ajaxlink class
});


$(".employee-card #closebtn").live("click", function(){
  $(this).closest(".employee-card").slideUp(400, function(){$(this).empty();});
  $("#prev,#next").removeClass("hidden");
  $(".scroll").slideDown();
});
