[CSS]
codice:
map:hover, map.over {
color:#FF0000;
border: thin red solid;
}
[JAVASCRIPT]
codice:
startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("nav"); //questa è da vedere e sistemare in base al tuo codice
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="MAP") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;