function showComment() {
	$('#commentDiv').fadeIn('fast');
	$('#addComment').fadeOut('fast',function(){$(this).attr('onClick','return hideCommentForm();').html('Скрыть форму').fadeIn('fast');})
	return false;
}

function hideCommentForm() {
	$('#commentDiv').fadeOut('fast');
	$('#addComment').fadeOut('fast',function(){$(this).attr('onClick','return showComment();').html('Добавить комментарий').fadeIn('fast');})
	return false;
}