// JavaScript Document

activeFAQ = null;
function toggleFAQ (id) {
	var aDiv = document.getElementById("a" + id);
	if (activeFAQ && activeFAQ != aDiv)
		activeFAQ.style.display = "none";
	aDiv.style.display = (aDiv.style.display == "block") ? "none" : "block";
	activeFAQ = aDiv;
}
function hoverFAQ (ele, state) {
	ele.style.backgroundColor = state ? "#dde2ef" : "#e8ebf4";
	ele.style.backgroundImage = state ? "url(/_img/pijl_1.gif)" : "url(/_img/pijl_0.gif)";
}
