var SlideshowsLogo={maxLogo:4,currentLogo:1,delayTime:6000,init:function(){if(!Ext.get('logo'+this.currentLogo)){return}Ext.get('logo'+this.currentLogo).setDisplayed(true);window.setInterval('SlideshowsLogo.showNexLogo()',this.delayTime)},showNexLogo:function(){this.currentLogo++;if(this.currentLogo>this.maxLogo){this.currentLogo=1}this.hideAllLogo();Ext.get('logo'+this.currentLogo).setDisplayed(true)},hideAllLogo:function(){for(i=1;i<=this.maxLogo;i++){Ext.get('logo'+i).setDisplayed(false)}}};Ext.onReady(function(){SlideshowsLogo.init()});

