<!--
var oTitles;

function init() {
	oTitles = document.getElementsByTagName("h1");
	for (var i = 0; i < oTitles.length; i++) {		
		oTitles[i].onclick = function() {
			if (this.nextSibling.nodeType == 1) {
			    this.nextSibling.className = (this.nextSibling.className == "collapse") ? "expand" : "collapse";
			}
			else if(this.nextSibling.nodeType == 3) {
			    this.nextSibling.nextSibling.className = (this.nextSibling.nextSibling.className == "collapse") ? "expand" : "collapse";
			}
			else {
			    return false;
			}
			this.className = (this.className == "collapsetitle") ? "expandtitle" : "collapsetitle";
		}
	}
	
	collapseAll();
}

function expandAll() {
	for (var i = 0; i < oTitles.length; i++) {
		if (oTitles[i].nextSibling.nodeType == 1) {
			oTitles[i].nextSibling.className = "expand";
		}
		else if(oTitles[i].nextSibling.nodeType == 3) {
			oTitles[i].nextSibling.nextSibling.className = "expand";
		}
		else {
			return false;
		}
		oTitles[i].className = "expandtitle";
	}
}

function collapseAll() {
	for (var i = 0; i < oTitles.length; i++) {
		if (oTitles[i].nextSibling.nodeType == 1) {
			oTitles[i].nextSibling.className = "collapse";
		}
		else if(oTitles[i].nextSibling.nodeType == 3) {
			oTitles[i].nextSibling.nextSibling.className = "collapse";
		}
		else {
			return false;
		}
		oTitles[i].className = "collapsetitle";
	}
}

window.onload = init;
-->