
window.onload = function() {
	var h3Elements = document.getElementsByTagName("h3");
	for(var i=0; i<h3Elements.length; i++) {
		h3Elements[i].className += " pseudolink";
		h3Elements[i].onclick = new Function("swapDisplay(this)");
		swapDisplay(h3Elements[i]);
	}
}
function swapDisplay( obj ) {
	while( obj.nextSibling ) {
		obj = obj.nextSibling;
		if( obj.nodeName.toLowerCase() == "dl" ) {
			break;
		}
	}
	if( obj.style.display == "none" ) {
		obj.style.display = "block";
	} else {
		obj.style.display = "none";
	}
}


