function toggleInfo(box_id) {
  if ($('#box_'+box_id).is(':hidden')) $('#bar_'+box_id).find('.toggle_label').html('Click to close');
  else $('#bar_'+box_id).find('.toggle_label').html('Click to expand');
  $('#box_'+box_id).slideToggle();
}

$(document).ready(function() {
    $('.clickablebar').hover(
    function () {
      $(this).css('background-color', '#45626F');
      $(this).find('.toggle_label').fadeIn();
    },
    function () {
      $(this).css('background-color', '#336666');
      $(this).find('.toggle_label').fadeOut();
    }
  );
});