
function faq_dropdown(a, lid)
{
	down = document.getElementById(lid).style.display == "none";
	
	document.getElementById(lid).style.display = down ? "block" : "none";
	
	a.className= down ? "faqactive" : "";
}

function faq_dropdown_all()
{
	divs = document.getElementById('content').getElementsByTagName('div');
	
	for ( i = 0; i < divs.length; i++ )
	{
		if ( divs[i].id && divs[i].id.substring(0,5) == "vraag" )
		{
			divs[i].style.display = "block";
		}
	}
	
	a = document.getElementById('content').getElementsByTagName('a');
	
	for ( i = 0; i < a.length; i++ )
	{
		if ( a[i].href == "javascript://" )
		{
			a[i].className = "faqactive";
		}
	}
}
