$(document).ready(function (){
	$('#comments_block .comments_button').toggle(
     	function () {
			$(this).parents("#comments_block").find('.comments').css('display','block');
			$(this).html('Скрыть комментарии');
			return false;
     	},
     	function () {
			$(this).parents("#comments_block").find('.comments').css('display','none');
			$(this).html('Показать комментарии');
			return false;
		});
		});

