$(document).ready(function()
{
  $('.committee_link').click(function()
  {
    $('#committee_content').load(
        this.href
    );
  return false;
  });
  $('.pager_link').live('click',function()
  {
    $('#committee_content').load(
        this.href
    );
  return false;
  });
});
