function postComment(id) {
  msg=$("#cMsg").attr("value");
  if (!msg.length) {alert("введите вопрос"); return false;}
  $("#sendBtn").attr("value","подождите...");
  $.post("faq_ask.php", {msg: msg}, onPost);
}

function onPost(resp) {
  $("#sendBtn").attr("value","Отправить");
  $("#postDiv").html(resp);
//  hidePosting();
}

function showPosting() {
  $("#postDiv").hide("fast", function() {
    $("#postDiv").html($("#postComment").html());
    $("#postDiv").show("fast");
  });
}

function hidePosting() {
  $("#postDiv").hide("fast", function() {
    $("#postDiv").html($("#postBtn").html());
    $("#postDiv").show("fast");
  });
}
