$(document).ready(function () {
    var $div = $('#more');
    var height = $div.height();
    $div.hide().css({ height : 0 });

    $('a[rel^=more]').click(function () {
        if ($div.is(':visible')) {
            $div.animate({ height: 0 }, { duration: 2500, complete: function () {
                $div.hide();
            } });
        } else {
            $div.show().animate({ height : height }, { duration: 2500 });
            $('span#remove').fadeOut({ duration: 2500 });
        }

        return false;
    });
});

