$('#contact h3').click(function() {
  $(this).closest('li')
    .toggleClass('expanded')
    .siblings()
      .removeClass('expanded');
})
