
	function my_rate_news(rate, id)
	{
		$.ajax({
			type: "POST",
			url: "/ajax/rate_news.php",
			data: "rate="+rate+"&id="+id,

			beforeSend: function()
			{
				$("#rate_result").fadeOut(500, function()
					{
						$("#rate_indicator").fadeIn(500);
					}
				);
			},

			success: function(msg)
			{
				$("#rate_indicator").fadeOut(500, function()
					{
						$("#rate_result").html(msg);
						$("#rate_result").fadeIn(500);
					}
				);
			}
		});
	}


	function yes_no(vote, id)
	{
		$.ajax({
			type: "POST",
			url: "/ajax/rate_yes_no.php",
			data: "vote="+vote+"&id="+id,

			beforeSend: function()
			{
				$("#yes_no_result_"+id).fadeOut(500, function()
					{
						$("#yes_no_indicator_"+id).fadeIn(500);
					}
				);
			},

			success: function(msg)
			{
				$("#yes_no_indicator_"+id).fadeOut(500, function()
					{
						$("#yes_no_result_"+id).html(msg);
						$("#yes_no_result_"+id).fadeIn(500);
					}
				);
			}
		});

	}

	function my_rate_game(rate,id)
	{

		$.ajax({
			type: "POST",
			url: "/ajax/rate_game.php",
			data: "rate="+rate+"&id="+id,

			beforeSend: function()
			{
				$("#rate_result").fadeOut(500, function()
					{
						$("#rate_indicator").fadeIn(500);
					}
				);
			},

			success: function(msg)
			{
				$("#rate_indicator").fadeOut(500, function()
					{
						$("#rate_result").html(msg);
						$("#rate_result").fadeIn(500);
					}
				);
			}
		});

	}

