I'm using a CRM style webmenu and need to change the text color on hover. Currently i've got:
switch (o.className)
{
case "mnuSpacer": case "mnubar": case "mnuList": case "icMenu mnuRight": case "icMenu": return;
case "menu": case "button":
out();
if (!_capture)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
}
else if (o != _o.parentElement)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
clean();
down();
}
_oTopOn = o;
break;
default:
Please help....
pixel
switch (o.className)
{
case "mnuSpacer": case "mnubar": case "mnuList": case "icMenu mnuRight": case "icMenu": return;
case "menu": case "button":
out();
if (!_capture)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
}
else if (o != _o.parentElement)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
clean();
down();
}
_oTopOn = o;
break;
default:
Please help....
pixel