function deca_comment_load_more(nid, page){
    jQuery.ajax({
        async : true,
        url : '/deca_comments/load_more?nid='+nid+'&page='+page,
        complete: function(html){
            $("#indicator-loading-comments").hide();
            $("#load-more-comments-link").show();
            //$('#comment-preview').before(html.responseText);
            $('#load-more-comments-link').before(html.responseText);

            $('.comment_reply a:not(.ajax-comments-processed)').addClass('ajax-comments-processed').click(ajax_comments_reply_click);
        },
        beforeSend : function(){
            $("#load-more-comments-link").hide();
            $("#indicator-loading-comments").show();
        }
    });
}