// JavaScript Document
function menuDyn()
{
	bouton = document.getElementById('menu').getElementsByTagName('img');
	for(i = 0; i < bouton.length; i++)
	{
		  bouton[i].onmouseover = function(){ this.src=this.src.replace('b-','bs-'); };
		  bouton[i].onmouseout = function(){ this.src=this.src.replace('bs-','b-'); };
		  bouton[i].style.cursor="pointer";
	}

	if(document.getElementById('menu2'))
	{
		bouton = document.getElementById('menu2').getElementsByTagName('img');
		for(i = 0; i < bouton.length; i++)
		{
			  bouton[i].onmouseover = function(){ this.src=this.src.replace('b-','bs-'); };
			  bouton[i].onmouseout = function(){ this.src=this.src.replace('bs-','b-'); };
			  bouton[i].style.cursor="pointer";
		}
	}
}

