function vote(rate,id){
	
	$.ajax({
		url:     root + "rating/vote/" + rate + "/" + id,
		cache:   false,
		success: function(html){
			$(".u_votes_"+id).html(html);
			$.ajax({
				url:     root + "rating/result/" + id,
				cache:   false,
				success: function(html){
					$(".g_votes_"+id).html(html);
				}
			});
		}
	});
		
}