﻿function initExpand() {
    $('#rmLink').click(function() {
        $('#pMore').fadeIn(500, null);
        $('#rmLink').hide();
    });
    $('#rlLink').click(function() {
        $('#pMore').fadeOut(500, null);
        $('#rmLink').show();
    });
}
