function toggleQuestions(active_div)
{
	$('current').style.display = 'none';
	$('past').style.display = 'none';
	$('never').style.display = 'none';
	$(active_div).style.display = 'block';
}