jQuery.fn.hoverfade=function(hvspeed,hvopacity,uhspeed,uhopacity){return this.each(function(){jQuery(this).css({opacity:uhopacity}).hover(function(){jQuery(this).stop().fadeTo(hvspeed,hvopacity);},function(){jQuery(this).stop().fadeTo(uhspeed,uhopacity);});});};