var OL = {};
OL.Views = {};

OL.Views.home_about = function() {
  function show_employee(){
    var employee_path = $(this).attr('data-employee_path');
    var image = $(this);
    // Show loader
    $('#loader').show();
    $('#bio').hide();
    $.get(employee_path, function(html){
      $('#loader').hide();
      $('#bio').html(html).show();
    });
  }
  $('#people li img').click(show_employee);
}

OL.Views.jobs_index = function() {
  $('#jobs .bar').click(function(){
    $(this).next().toggle();
    var expander_value = $(this).find('.expander').html();
    var new_value = expander_value == '+' ? '-' : '+';
    $(this).find('.expander').html(new_value);
  });
}