function menuOver(num,img1,img2,img3,color)
{
	/*alert(num1+" - "+num2+" - "+num3);*/
	document.getElementById("menu_gauche_1_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img1+")";
	document.getElementById("menu_gauche_2_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img2+")";
	document.getElementById("menu_gauche_3_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img3+")";
	
	document.getElementById("lien_"+num).style.color = color;
	
}

function menuOut(num,img1,img2,img3,color)
{	

	//alert(img1,img2,img3,color);
	document.getElementById("menu_gauche_1_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img1+")";
	document.getElementById("menu_gauche_2_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img2+")";
	document.getElementById("menu_gauche_3_"+num).style.backgroundImage = "url(../../maj/phototheque/photos/charte/"+img3+")";
	
	document.getElementById("lien_"+num).style.color = color;
}	


/*
function deplie_menu(id)
{
	//alert(id);
	var divs=document.getElementsByTagName("div");
	for(var i=0 ; i<divs.length ; i++)
	{
		if(divs[i].id.search(/^sous_menu_haut_/)>=0)
		{
			if(divs[i].id=='sous_menu_haut_'+id)
			{
				divs[i].style.display= "block";
			}
			else
			{
				divs[i].style.display= "none";   
			}
		}
	}
}

*/

