// JavaScript Document

// MENU MONACT
function menuRollOver(li) {
}

function menuInit(pageId) {
	var tab = new Array("accueil", "fonctionnalites", "demonstrations", "revendeurs", "evenements", "boutique", "telechargements", "services", "contact");
	for (var i=0; i<tab.length; i++)
	{
		var li = document.getElementById(tab[i]);
		li.className = tab[i];
		if (pageId == tab[i])
			li.className = tab[i] + "_on";
			
		li.onmouseover = function() {
			//alert(this.className);
			if (pageId + "_on" != this.className)
				this.className = this.className + "_on";
			this.style.cursor = "pointer";
		}
			
		li.onmouseout = function() {
			//alert(this.className);
			if (pageId + "_on" != this.className)
				this.className = this.className.split("_")[0];
		}
	}
}