<!--

// Fonctions de rollover
//........................
function Survol(x) 
	{  
	x.style.backgroundColor= '#FF6600'; // orange
	x.style.cursor='pointer';
	x.style.color ='#FFFF99';
	}

function Sortie(x, noir) 
	{
	x.style.backgroundColor='';
	x.style.cursor='default'; 
	
	if (noir)
		x.style.color ='#000000';
		
	else x.style.color ='#FFFFFF';
	}

//-->
