$(function() {
    $('#plhSubPage .personProfileBody').hide();
});

$(function() {
    $('#plhSubPage .personProfileReadMore').click(function() {
        $('.personProfileHide').parents('.personProfile').children('.personProfileHide').hide();
        $('.personProfileHide').parents('.personProfile').children('.personProfileReadMore').show();
        $('.personProfileReadMore').not(this).parents().children('.open').slideUp().removeClass('open');
        $(this).parents().children('.personProfileBody').slideToggle().addClass('open');
        $(this).hide().parents().children('.personProfileHide').show();

    });
});


$(function() {
    $('#plhSubPage .personProfileHide').click(function() {
        $('.personProfileHide').not(this).parents().children('.personProfileBody').slideUp();
        $(this).parents().children('.personProfileBody').slideToggle();
        $(this).hide().parents().children('.personProfileReadMore').show();
    });
});




