jQuery.fn.extend({
//---------------------------------------------------------------
highlight : function(speed, color, callback) {
// Use FadeTo to avoid the 'display:none' of FadeOut
return $(this).wrap("<div class='wrap' style='background:" + color + ";'></div>").
fadeTo(speed, 0.01, function(){$(this).fadeTo(speed, 1.0, callback)});
}
});