var cl = new Class({
Extends: Fx,
initialize: function (elem) {
this.elem = elem;
},
set: function (now) {
this.setStyle('opacity', now);
}
});
initialize: function (elem) {
//...
this.addEvent('complete', function(){ ... });
},