
function init_rating() {

}

function votar(link, key, id, voto) {
	$.ajax({
		type: "get",
		url: link, 
		data: "id="+id+"&voto="+voto,
		cache: false,
		async: true,
		success: function(result) {
			var json = result;//eval('('+result+')');
			$("#resultado_voto_texto_"+key+"_"+id).html('<strong>;-)</strong> Gracias por votar');
			$("#resultado_voto_"+key+"_"+id).html(json.votos_valor);
			$(".current-rating", "#rating_"+key+"_"+id).width(json.votos_porcentaje + "%");
			var li = $("li:gt(0)", "#rating_"+key+"_"+id);
			li.remove();
		},
		error: function(result) {
		}
	});

}
