function selectSection(section){
	ajax(SELF_URL+"questions_ajax?&section="+section,on_selectSection);
}

function on_selectSection(result){
	$("#d_questions").html(result.d_questions);
	$("#d_qtitle").html("<p><strong>"+result.num+" </strong>"+result.question+"</p>");
	$("#d_answer").html("<p>"+result.answer+"</p>");
	$("#d_image").html("<img src=\"images/faq/faqs"+result.image_num+".jpg\" alt=\""+result.question+"\" />");
}

function selectQuestion(num,id_faq_data,section){
	ajax(SELF_URL+"answer_ajax?id_faq_data="+id_faq_data+"&num="+num+"&section="+section,on_selectQuestion);
}

function on_selectQuestion(result){
	$("#d_questions").html(result.d_questions);
	$("#d_qtitle").html("<p><strong>"+result.num+" </strong>"+result.question+"</p>");
	$("#d_answer").html("<p  class='faqparagraph'>"+result.answer+"</p>");
}

