

$(document).ready(function () {

    // shorten msg 

    var heightFull = $('.frp-message-body').height();
    var heightCollpsd = "200px";
    var heightCollpsdInt = 200 + 70;
    var $msg = $('.frp-message-body');
    if (heightFull > heightCollpsdInt) {

        $msg.css("height", heightCollpsd).after('<span class="grdnt">&nbsp;</span>');
        $('.frp-message').after('<a class="lnk_readmore" href="#">Read more</a>');
        heightCollpsd = $msg.height();

        $('.box-msg a.lnk_readmore').click(function () {
            if ($msg.height() == heightCollpsd) {
                $msg.css({ height: 'auto' });
                $(this).text('Close');
                $('.frp-message .grdnt').toggle();

            }
            else {
                $msg.animate({ height: heightCollpsd }, "normal", function () { $('.frp-message .grdnt').toggle() });
                $(this).text('Read more');

            };
            return false;
        }
		 	);

    };


});
