function voterPour(id)
{

		$jvote('#vote'+id).html('<img src="../_IMG/ajax-loading.gif" />');
		myvote = function()
		{
		$jvote.post("../voteprocess.php?id="+id,{"id":id},function(html) {
			if (html == 'no') {
				$jvote('#vote'+id).html('d&eacute;j&agrave;<br />vot&eacute;').fadeIn();
			} else {
				$jvote('#vote'+id).html('<img src="../_IMG/ok.png" />').fadeIn("slow");
			}
		});
		}
		setTimeout('myvote()', 1000);
}