// JavaScript Document
function over(id1,id2)
{
	if(id1!="")
	{document.getElementById(id1).className="over_droit";}
	if(id2!="")
	{document.getElementById(id2).className="over_gauche";}
}
function out(id1,id2)
{
	if(id1!="")
	{document.getElementById(id1).className="barre_menu";}
	if(id2!="")
	{document.getElementById(id2).className="barre_menu";}
}
