$(document).ready(function() {
$('#vote-comm').live("click", function() {
		var id = $(this).parent('div').attr('id');
		var matches = id.match(/c-([0-9]+)$/);
		id = matches[1];
		var vote;
		if($(this).attr('class')=='yes-comm')  vote='yes'; else vote='no';
		$('#c-'+id).addClass('loading');
		$.post('/comment.php?action=rate',{
			id:id,
			vote:vote,
		},function(json) {
			if(vote=='yes') t='Отзыв полезен? <span class="vote-comm">Да</span> '+json.yes+' / Нет '+json.no; else
			t='Отзыв полезен? Да '+json.yes+' / <span class="vote-comm">Нет</span> '+json.no;
			$('#c-'+id).removeClass('loading').html(t);
		},'json');
		return false;
	});
});
