$(function() {
    $(".comments-menu a").live("click", function() {
        $.get(this.href, null, null, "script");
        return false;
    });

    $("#comments-top .tab a").click(function(){
        $.get(this.href, null, null, "script");
        return false;
    });

    $("#comments-content form").submit(function(){
        $.post(this.action, $(this).serialize(), null, "script");
        return false;
    });
});