function post_question(id)
{
	$.post("/post_question.html?id=" + id, { apply: 1, question: $("textarea[name='question']").attr("value"), name: $("input[name='name']").attr("value"), email: $("input[name='email']").attr("value") },
	function (data){
		$("#post_question_block").html(data);
	});
	
	return false;
}