(function($){$.effects.highlight=function(o){return this.queue(function(){var a=$(this),props=['backgroundImage','backgroundColor','opacity'];var b=$.effects.setMode(a,o.options.mode||'show');var c=o.options.color||"#ffff99";var d=a.css("backgroundColor");$.effects.save(a,props);a.show();a.css({backgroundImage:'none',backgroundColor:c});var e={backgroundColor:d};if(b=="hide")e['opacity']=0;a.animate(e,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(b=="hide")a.hide();$.effects.restore(a,props);if(b=="show"&&$.browser.msie)this.style.removeAttribute('filter');if(o.callback)o.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);