jQuery(document).ready(function($) {
  /* handle clicks on the contact info header */
  $("#member_service_links").after("<h2 id='member_service_contact_click_to_show' class='contrast-bar'>Click to show contact information</h2>");
  $("#member_service_contact").addClass('hidden');
  $("#member_service_contact_click_to_show").click(function(e) {
    $("#member_service_contact").removeClass('hidden');
    $(this).hide();
    /* the contact_click_ajax_url value is inserted into the Member Service page by the member service contact viewlet */
    $.post(contact_click_ajax_url, {contact_info_click:'yes'}, function(d) { /* callback if successful */ /* no op */ });
  });
});
