 Fx.FadeHoverLink = Fx.Style.extend({
     initialize: function(el, options) {
 options.wait = false;
         this.parent(el, 'opacity', options);
         this.set(1.0);
         this.element.addEvent('mouseover', function() { this.custom(1.0,0.78); }.bind(this) );
         this.element.addEvent('mouseout', function() { this.custom(0.78,1.0); }.bind(this) );
     }
 });
 
 window.addEvent('load', function() {
 $$('.sfx_fade_out_01').each(
 function(el) {
 el.fl = new Fx.FadeHoverLink(el,{duration:350});
 }
 );
 }); // addEvent..onload