Risolto con un js piccolo piccolo da applicare all'onMouseOver e all'onMouseOut!!
-------------------------------------------------------------
//SWAP BACKGROUND MENU SERVIZI
function swapServizi(scelta)
{
if (scelta == "1")
{
document.getElementById('Industry').style.backgrou nd = '#CED646';
document.getElementById('Industry').style.color = '#FFFFFF';
return false;
}
if (scelta == "2")
{
document.getElementById('Competenze').style.backgr ound = '#CED646';
document.getElementById('Competenze').style.color = '#FFFFFF';
return false;
}
}
function swapServiziNeg(scelta)
{
if (scelta == "1")
{
document.getElementById('Industry').style.backgrou nd = '#FFFFFF';
document.getElementById('Industry').style.color = '#000000';
return false;
}
if (scelta == "2")
{
document.getElementById('Competenze').style.backgr ound = '#FFFFFF';
document.getElementById('Competenze').style.color = '#000000';
return false;
}
}
Sui link:
onMouseOver="swapServizi('1')" onMouseOut="swapServiziNeg('1')"
![]()