// JavaScript Document

function init()
{
	//GESTION ROLLOVER MENU LEFT
	var liArr = document.getElementsByTagName('li');
	
	for (var i = 0; i  < liArr.length; i ++)
	{
			if (liArr[i].className == 'no-select')
			{					
					liArr[i].onmouseover = function(){this.className = "no-select-over";}
					liArr[i].onmouseout = function(){this.className = "no-select";}
			}
	}
}