[jQuery] Interface: fix for ifxhighlight

[jQuery] Interface: fix for ifxhighlight


Hi jQuerians and Interfacer users,
I just committed a little fix for the highlight effect. If you specify a
color to animate from, in IE that color is not removed after animation
is done. The reason is the order of the following two lines of code:
jQuery(this).css('backgroundColor', color);            
            
/* In IE, style is a object.. */
if(typeof this.oldStyleAttr == 'object') this.oldStyleAttr =
this.oldStyleAttr["cssText"];
The custom background color is then already in oldStyleAttr which it
shouldn't. I've changed the order...
-- Klaus