var banners = function(displayBox, urls)
        {
            this.DisplayBox = $(displayBox);
            if (urls.length > 0)
            {
                urls.each(function(url, i)
                {
                     this.Images[i] = new Element('img',{src:urls[i], alt:'banner'});
                }.bind(this));
                this.DisplayBox.setHTML('');
                this.Pos = Math.floor(Math.random()*this.Images.length);
                this.Images[this.Pos].injectInside(this.DisplayBox); 
                if (this.Images.length > 1)           
                    this.Play();         
            }
        }
        
        banners.prototype = {
            DisplayBox:null,
            Pos:0,            
            Images:new Array(),
            Speed:10000,
            _playing:false,
            Play:function()
            {            
                this._playing = true;
                $clear(this._playerPeriodical);
                this._playerPeriodical = this.AutoNext.bind(this).periodical(this.Speed);
            },
            AutoNext:function()
            {
                this.Move(+1);
            },
            Move:function(direction)
            {
                this.Images[this.Pos].effects({duration: 500}).start({'opacity':'0'}).chain(function(){this.remove()}.bind(this.Images[this.Pos]));
                this.Pos += direction;
                if (this.Pos >= this.Images.length)
                    this.Pos = 0;
                if (this.Pos < 0)
                    this.Pos = this.Images.length -1;    
                
                this.Images[this.Pos].setStyles({'opacity':'0'});
                this.Images[this.Pos].injectInside(this.DisplayBox);
                this.Images[this.Pos].effects({duration: 500}).start({'opacity':'1'})
            }
        }
 window.addEvent('domready',function(){new banners('image', ['/BannerImages/20beb298-d813-4c25-832a-486224f8a98f.jpg','/BannerImages/35744bff-787e-4b56-8a0d-12c3e3a3d242.jpg','/BannerImages/424a2634-502f-4259-99b7-e7448de2b623.jpg','/BannerImages/43d9a91f-76cd-4879-8eca-4baabbe453eb.jpg','/BannerImages/4da3991a-01a1-402c-979b-029a3fe664de.jpg','/BannerImages/5e38c96e-3b61-48cb-9828-bd7fdf3c4eb1.jpg','/BannerImages/759977f5-46f9-40a9-a90e-291606432c6e.jpg','/BannerImages/78aabc68-7453-475c-9035-3300b08bbc9b.jpg','/BannerImages/90e91ce4-ad07-4ec7-8e23-5c5abd8f509c.jpg','/BannerImages/93c74068-8c93-4c78-ba8b-759c3aef7111.jpg','/BannerImages/96edb16e-5a05-48c5-a261-b377737d106c.jpg','/BannerImages/aa62b1ca-4191-4236-b462-6d588288d04e.jpg','/BannerImages/cace85cd-9b58-4432-9958-d364195d08fc.jpg','/BannerImages/e03e9511-84d0-43b7-8217-be191368ac84.jpg','/BannerImages/f367e079-58d0-4995-a3ab-2303cbd03f73.jpg','/BannerImages/fec9ebd6-202b-4e51-b050-33094bb7651e.jpg']); });