function hideComment(id, div, button)
{
	$.get("http://sports-planet.ru/new.php?url=edit/comments/hide/"+id+".html", function(data){
		if (data == 1)
		{
			$('#'+div).addClass("hidden_comment");
			$('#'+button).html('показать');
			$('#'+button).attr('onClick', 'showComment('+id+', "'+div+'", "'+button+'")');
		}
		else
		{
			alert("Ошибка");
		}
		});
}
function showComment(id, div, button)
{
	$.get("http://sports-planet.ru/new.php?url=edit/comments/show/"+id+".html", function(data){
		
		if (data == 1)
		{
			$('#'+div).removeClass("hidden_comment");
			$('#'+button).html('спрятать');
			$('#'+button).attr('onClick', 'hideComment('+id+', "'+div+'", "'+button+'")');
		}
		else
		{
			alert("Ошибка");
		}
		});
}
function deleteComment(id, div)
{
	$.get("http://sports-planet.ru/new.php?url=edit/comments/delete/"+id+".html", function(data){
		
		if (data == 1)
		{
			$('#'+div).hide();
		}
		else
		{
			alert("Ошибка");
		}
		});
}
