function show_faq(faq_id)
{
	$('question_' + faq_id).hide();	
	$('answer_' + faq_id).show();	
}

function hide_faq(faq_id)
{
	$('answer_' + faq_id).hide();	
	$('question_' + faq_id).show();	
}







