var titres = $('content').getElementsByTagName('dt');
for (var i = 0; i < titres.length; i++) {
	var x = titres[i].nextSibling; 
	while (x.nodeType!=1) {
		x=x.nextSibling;
	}
	x.style.display = "none";
	titres[i].onclick = function () {
		var titres2 = $('content').getElementsByTagName('dt');
		for (var j = 0; j < titres2.length; j++) {
			titres2[j].className="";
			var y = titres2[j].nextSibling; 
			while (y.nodeType!=1) {
				y=y.nextSibling;
			}
			y.style.display = "none";
		}
		this.className="selected";
		var x = this.nextSibling; 
		while (x.nodeType!=1) {
			x=x.nextSibling;
		}
		x.style.display = "block";
		x.className = "selected";
	}
	titres[i].onmouseover = function () {
		if (this.className=="")
			this.className="hover";
	}
	titres[i].onmouseout = function () {
		if (this.className=="hover")
			this.className="";
	}
}


