window.addEvent('domready', function(){
    var images = $$('.imageRotatorDefault-hingucker img');
    images.setStyle('opacity', 0);
    images.set('tween', {duration: 1400});
    var pos = 0;
    var last = null;
    var func = function(){
        if( pos >= images.length ){
            pos = 0;
        }
        if( last )
            last.tween('opacity', 0);
        images[pos].tween('opacity', 1);
        last = images[pos];
        pos++;
    };
    func();
    func.periodical(3000);
});

