function vote(amnt,slug){
    var calificacion = '';
    switch (amnt) {
        case 1:
            calificacion = " como <b>mala</b>";
            break;
        case 2:
            calificacion = " como <b>regular</b>";
            break;
        case 3:
            calificacion = " como <b>buena</b>";
            break;
        case 4:
            calificacion = " como <b>muy buena</b>";
            break;
        case 5:
            calificacion = " como <b>excelente</b>";
            break;
        default:
            calificacion = "";
            break;

    }
    var mensaje = "Has votado esta informaci&oacute;n"+calificacion+". Muchas gracias!";
    
    $.ajax({
        type: "POST",
        url: slug+"/votar",
        data: "voto="+amnt,
        dataType: "json",
        success: function(res){
            var img = '<b class="valoracion_blanco estrellas_'+res.promedioVotos+'" style="margin-top: 0px;"></b>';
            $('#li1').hide();$('#li2').hide();$('#li3').hide();
            $('#li4').hide();$('#li5').hide();
            $('#ul_stars').css('background','none');
            $('#current-rating').css('width','0px');
            $('#current-rating').html(img);
            $('#current-rating-result').html(mensaje);
            $('#cant_votos').html(res.cantVotos);
        }
    });
}