views:

37

answers:

0
var menuEnter = { 'color': hoverColor};
var menuLeave = { 'color': 'C0C0C0'};

new ('div#menu a.level1 span.bg', menuEnter, menuLeave,
{ transition: Fx.Transitions.linear, duration: 200 },
{ transition: Fx.Transitions.sineIn, duration: 500 });

I would like the active menu color to not be affected by the mouseleave var.

Thank you.