function makeFAQ() {
	var divs = document.getElementsByTagName('div');
	for (var i in divs) {
		var element = divs[i];
		if (element.className != 'faq') continue;
		var question = element.firstChild;
		question.onclick = function() {
			this.blur();
			var answer = this.nextSibling;
			if (answer.style.display == 'block') {
				answer.style.display = 'none';
			} else {
				answer.style.display = 'block';
			}
			return false;	// don't actually follow the link
		};
		question.innerHTML = '<a href="#">' + question.innerHTML + '</a>';
		var answer = element.lastChild;
		answer.style.display = 'none';
	}
}
