Pays_fourrier = '';
Type_fourrier = '';
Rubrique_fourrier = '';

function ssMenu(Action,Menu,Val){
switch (Action){
	//--- Over ---
	case 1:
		if ((Menu != 'Pays') && (Val != Type_fourrier))
              eval('document.'+Val+'.src = "ImgSite/'+Val+'_on.jpg"');
		break;

	//--- Out ---
	case 2:
		if ((Menu != 'Pays') && (Val != Type_fourrier))
              eval('document.'+Val+'.src = "ImgSite/'+Val+'_off.jpg"');
		break;

	//--- Click ---
	case 3:
		if (Menu == 'Pays'){
           Val = returnCountryFromCountryTampon(eval('document.Country_'+Val+'.src'));
           Cadre.location.href = 'Fourrier_frame.php?Pays='+Val+'&Type='+Type_fourrier+'&Rubrique='+Rubrique_fourrier;
           Pays_fourrier = Val;
		}
		else{
			Cadre.location.href = 'Fourrier_frame.php?Pays='+Pays_fourrier+'&Type='+Val;
			eval('document.'+Type_fourrier+'.src = "ImgSite/'+Type_fourrier+'_off.jpg"');
			Type_fourrier = Val;
		}
		break;
}
}