        var SimpleFader = new Class({
            initialize:function(el){
                this.ImageWrappers = $$(el + " li");
                this.ImageWrappers.set("opacity","0");
                this.ImageWrappers[0].set("opacity", "1");

                this.Els = [];

                $$(el + " li").each(function(item){
                    this.Els.include(new Fx.Morph(item,{duration:5000, transitions:Fx.Transitions.Sine.easeOut, link:'cancel'}));
                }.bind(this));

                this.currentEl = this.Els[0];
                this.current = 0;
                this.Fade.periodical(5000, this);
            },

            Fade:function(){
                this.currentEl.start({"opacity" : [1, 0]});

                (this.current != this.Els.length - 1)?this.current++:this.current=0;

                this.Els[this.current].start({"opacity" : [0, 1]});
                this.currentEl = this.Els[this.current];
            }
        });