/* 
 * Created by David Galvis
 */


function Vote() {

}
Vote.prototype =
{
    agree: function(idEval, element){
        jQuery.post("/application/vote.php", {idEval: idEval, agree: 1});
        //jQuery( element ).parent().parent().html('<div class="reacBox_wd" style="float:right; width:170px;"><img src="/images/thumb_up.png" /> ' + trad_i_agree + '</div>');
        //jQuery( "#thanks" + idEval ).show();
    },

    disagree: function(idEval, element){
        jQuery.post("/application/vote.php", {idEval: idEval, agree: 0});
        //jQuery( element ).parent().parent().html('<div class="reacBox_wd" style="float:right; width:170px;"><img src="/images/thumb_down.png" />' + trad_i_disagree + '</div>');
    }
};

var vote = new Vote();


