function Init(label, id) {
	var oContent = document.getElementById(id);
	if(oContent.className != 'show')
		oContent.className = 'hide';

	var oTitle = document.getElementById(label), /*oA = document.createElement('a'),*/ oTxtA = document.createTextNode(oTitle.firstChild.nodeValue);
		//oA.href= '#';
		//oA.appendChild(oTxtA);
		//document.body.replaceChild(oA, oTitle);
		oTitle.onmouseover = function() { Display(id); return false; };
		oTitle.onmouseout = function() { Display(id); return false; };
};

function Display(id) {
	var oContent = document.getElementById(id);
	oContent.className = (oContent.className == 'hide') ? 'show' : 'hide';
}

function Cache(id) {
	var oContent = document.getElementById(id);
	oContent.className = (oContent.className == 'show') ? 'hide' : 'show';
}

window.onload = function() {
// -----------------------------------------------
// Liste des titres et des contenus correspondants
// -----------------------------------------------
	Init('LabelLivre1', 'livre1');
	Init('LabelLivre2', 'livre2');
	Init('LabelLivre3', 'livre3');
	Init('LabelLivre4', 'livre4');
	Init('LabelLivre5', 'livre5');
	Init('LabelLivre6', 'livre6');
	Init('LabelLivre7', 'livre7');
	Init('LabelLivre8', 'livre8');
	Init('LabelLivre9', 'livre9');
	Init('LabelLivre10', 'livre10');
};