/*
 * Aleksey Goremikin & Factonomy Ltd 2011
 */
Ext.onReady(function(){InitiateTickers();if(Tickers.length>0){doRotateTickersTimer()}});var Tickers=[];var CurrentTicker=0;InitiateTickers=function(){var a=1;var b=Ext.get("newsticker"+a);while(b){Tickers.push(b);b=Ext.get("newsticker"+(++a))}};function doRotateTickersTimer(){RotateTickers()}RotateTickers=function(){if(Tickers[CurrentTicker]){Tickers[CurrentTicker].setVisible(false)}CurrentTicker++;if(Tickers[CurrentTicker]==null){CurrentTicker=0}if(Tickers[CurrentTicker]){Tickers[CurrentTicker].setVisible(true)}setTimeout("doRotateTickersTimer()",5000)};
