// basic collapse/reveal guff 
function showquestion(question_id){
	// close them all first 
	closequestions(question_id);
	// open selected 
	Effect.BlindDown('answer_'+question_id, {duration:0.3});
	$('href_'+question_id).addClassName('selected')
}
function closequestions(question_id){
	$$('div.faq_answer').each(function(s){
		if(s.id != 'answer_'+question_id){Effect.BlindUp(s, {duration:0.3})};
	});
	$$('a.faq_href').each(function(s){
		if(s.id != 'answer_'+question_id){$(s).removeClassName('selected')};
	});
}
