/**
 * @author burgisser
 */
var last_faq_id = null;

function showHideFAQ(faq_id){
	if (last_faq_id != null)
		$('faq_'+last_faq_id).style.display = 'none';
	last_faq_id = faq_id;
	
	$('faq_'+faq_id).style.display = '';
}
