function accordion() {
  $('#offices div').hide();

  $('#offices li:first h2').addClass('current');
  $('#offices li:first div').show();

  $('#offices h2').click(
    function() {
        $('#offices h2').removeClass('current');
        $(this).addClass('current');
        $('#offices div:visible').hide();
        $(this).next().fadeIn(600);
    }
  );
}

$(document).ready(function() { accordion(); });
