function showText()
{
    $(document).ready(function () {
        $('#showmore').toggle();
        var h = $('#fulltext').innerHeight();
        $('#product_description').animate({
            height: h + 'px'
        }, {queue:false, duration:1000});
    });
}
