// JavaScript Document
$(document).ready(function(){
    jQuery.ajaxSetup({
        timeout:10000
    });


    $("#subButton").click(function(){
        
        jQuery.ajax({
            type: "POST",
            url: "/action/comment",
            data: "commentType=artigo&commentId="+document.getElementById('commentId').value+"&title="+encodeURIComponent(document.getElementById('title').value)+"&name="+encodeURIComponent(document.getElementById('name').value)+"&email="+document.getElementById('email').value+"&commentText="+encodeURIComponent(document.getElementById('commentText').value),
            success: function(){
                $("#form_vc").html('<div class="obrigado">O seu comentário foi enviado com sucesso. Obrigado pela sua participação.</div>')
                },
            error: function(){
                $("#form_vc").html('<div class="obrigado">Este serviço encontra-se temporáriamente indisponível</div>')
                }
    });    });

    
    



});

