$(document).ready(function(){
    $('#vouvotar').attr("disabled","disabled");

    $('.voto').change(function(){
        $('#vouvotar').removeAttr("disabled"); 
    });
    $('#vouvotar').click(function(){
        var nome = $('input[class=voto]:checked').attr('name');
        var voto = $('input[class=voto]:checked').attr('value');
        $.post("pollAjax.php", {setcookie: nome, voto: voto}, function(msg){
            msg = '<h1 style="text-align:center;">Sondagem:</h1>'+msg;
            $('#my_sondagem').html(msg);
            $(document).find('.good').each(function(){
                var percent = $(this).attr('percentagem');
                if(percent==0)
                    percent=1;
                $(this).css('width','0').animate({
                    width:percent+'%'
                    },1000);
               
            });
        });
        return false;
    });
    $('#reset').click(function(){
        $.post("pollAjax.php", { unsetcookie: ''}, function(msg){
            window.location.reload(true);
        });
        return false;
    });

});
