jQuery(function($) {
  if ($('body.page-management-team').size()) {
    $('ul.profiles li .about').find('p:first').append(' <a href="#" class="more">Read More</a>');
    $('ul.profiles li .about').find('p.more:last').append(' <a href="#" class="less">Read Less</a>');
    $('ul.profiles li a.more').bind('click', function() {
      $(this).hide();
      $(this).parents('div.about').find('p.more').slideDown(200);
      return false;
    });
    $('ul.profiles li a.less').bind('click', function() {
      $(this).parents('div.about').find('p.more').slideUp(200);
      $(this).parents('div.about').find('a.more').show();
      return false;
    });
  }

  $('div.more').find('p:first').append(' <a href="#" class="more">Read More</a>');
  $('div.more').find('p.more:last').append(' <a href="#" class="less">Read Less</a>');
  $('div.more').find('p.more').hide();
  $('div.more a.more').bind('click', function() {
    $(this).hide();
    $(this).parents('div.more').find('p.more').slideDown(200);
    return false;
  });
  $('div.more a.less').bind('click', function() {
    $(this).parents('div.more').find('p.more').slideUp(200);
    $(this).parents('div.more').find('a.more').show();
    return false;
  });
});

