 	function voiting (mitting_id)
	{
         $.ajax({
   			type: "POST",
  			url: "/voiting.php",
   			data: "id=" + mitting_id,
   			success: function(votes_count)
			{

				if (votes_count != 'false')
				{
					
					$('#mitting_votes_' + mitting_id).text(votes_count);
					if (votes_count == 2 || votes_count == 3 || votes_count == 4){
						$('#mitting_votes_' + mitting_id).parent('p').html('Этого события ждут <b id="mitting_votes_' + votes_count + '">' + votes_count + '</b> человека');
					}
					else
					{
						$('#mitting_votes_' + mitting_id).parent('p').html('Этого события ждут <b id="mitting_votes_' + votes_count + '">' + votes_count + '</b> человек');
					}
					
				}
	      	},
	      	error: function()
			{
	      		alert('Сервер не отвечает. Попробуйте еще раз.');
	      	}
		});
  	}
