$(function(){

    $('#showComments').click(function(){
        $('.loadIcon').show();
        $(this).hide();
        $('#commentsList').load($(this).attr('href'), {ajax: 1}, function(){
            $('.loadIcon').css('visibility', 'hidden');
            $('html, body').animate({scrollTop: $("#lastComment").offset().top}, 800);
        });
        return false;
    });

});
