// JavaScript Document
window.onload = function() {
initAll();
}

function initAll() {
	var allLinks = document.getElementsByTagName("a");
	
	for (var i=0; i<allLinks.length; i++) {
	if(allLinks[i].className.indexOf("menuLink") > -1) {
		allLinks[i].onclick = function() {return false;}
		allLinks[i].onmouseover = toggleMenu;
			}
		}
	}

function toggleMenu() {
	var startMenu = this.href.lastIndexOf("/")+1;
	var stopMenu = this.href.lastIndexOf(".");
	var thisMenuName = this.href.substring(startMenu,stopMenu);
	document.getElementById(thisMenuName).style.display = "block";
	this.parentNode.className = thisMenuName;
	this.parentNode.onmouseover = toggleDivOn;
	this.parentNode.onmouseout = toggleDivOff;
	
	}	

function toggleDivOn() {
	document.getElementById(this.className).style.display = "block";
	document.getElementById((this.className)+"titre").style.background = "#FFFF00";
	document.getElementById((this.className)+"titre").style.color = "#000000";
		}
function toggleDivOff() {
	document.getElementById(this.className).style.display = "none";
	document.getElementById((this.className)+"titre").style.background = "#FF00CD";
	document.getElementById((this.className)+"titre").style.color = "#FFFFFF";
	}