$(document).ready(function() {
    /*var caption = $(".submit input").attr("value");
    $(".submit").remove();
    $(".posts").append('<input id="CommentAddFormSubmit" type="submit" value="' + caption + '" />');
    $("#CommentAddFormSubmit").click(
        function (event) {
            $.post($("#CommentAddForm").attr("action"), $("#CommentAddForm").serialize(), 
                function (data) {
                    $("#CommentAddFormFieldset").html(data);
                }
            );

            event.preventDefault();
        }
    );*/
});

