Fx.Scroll.implement({

	scrollTo: function(y, x){
		return this.start(y, x);
	}

});

Fx.Style = Fx.Morph;

Element.implement({
        
        effects: function(options){
                return new Fx.Morph(this, options);
        }

});

Fx.Styles = Fx.Morph;

Element.implement({
        
        effects: function(options){
                return new Fx.Morph(this, options);
        }

});
