$(function(){
	$(".scenario .vote").click(function(){
		
		var el = $(this);
		el.find("span").toggle();
		$.ajax({
			"url": el.attr("href"),
			"success": function(res){
				el.parents(".scenario").find(".nb_votes .nb").text(res.nb);
				el.parents(".scenario").find(".nb_votes .what").text(res.what);
			}
		});
		return false;
	});
});