/* copyright iBi CENTER Web Development */
/* author: Alain *Bivo* Claessens */
var d = document;
if (document.images)
{
	menuImg_on = new Image(); menuImg_on.src = '/menu/bouton_on.gif';
	menuImg_off = new Image(); menuImg_off.src = '/menu/bouton_off.gif';
}
function menuOn(levelID,lnkID)
{
	var theCell="td_"+levelID+"_"+lnkID;
	var theLink="lnk_"+levelID+"_"+lnkID;
	switch(levelID)
	{
		case 1:
			var bg = "#FFE6B0";
			var fg = "#00447F";
			if (d.images && !d.layers)
				d['menuImg'+lnkID].src = menuImg_on.src;
			break;
		case 2:
			var bg = "#5788AD";
			var fg = "#FFFFFF";
			break;
	}
	if (d.all)
	{
		d.all(theLink).style.backgroundColor=bg;
		d.all(theLink).style.color=fg;
		d.all(theCell).style.backgroundColor=bg;
		d.all(theCell).style.color=fg;
	}
	else if (d.getElementById)
	{
		d.getElementById(theLink).style.backgroundColor=bg;
		d.getElementById(theLink).style.color=fg;
		d.getElementById(theCell).style.backgroundColor=bg;
		d.getElementById(theCell).style.color=fg;
	}
	else
	{
		/* for no reason */
	}
}
function menuOff(levelID,lnkID)
{
	var theCell="td_"+levelID+"_"+lnkID;
	var theLink="lnk_"+levelID+"_"+lnkID;
	switch (levelID)
	{
		case 1:
			var bg = "#ACC3D6";
			var fg = "#00447F";
			if (d.images && !d.layers)
				d['menuImg'+lnkID].src = menuImg_off.src;
			break;
		case 2:
			var bg = "#E5ECF2";
			var fg = "#00447F";
			break;
	}
	if (d.all)
	{
		d.all(theLink).style.backgroundColor=bg;
		d.all(theLink).style.color=fg;
		d.all(theCell).style.backgroundColor=bg;
		d.all(theCell).style.color=fg;
	}
	else if (d.getElementById)
	{
		d.getElementById(theLink).style.backgroundColor=bg;
		d.getElementById(theLink).style.color=fg;
		d.getElementById(theCell).style.backgroundColor=bg;
		d.getElementById(theCell).style.color=fg;
	}
	else
	{
		/* for no reason */
	}
}
