/* 1 cSpeed:  char-speed in ms,                  5 cLen:   char-length of the 1st ticker-item,
   2 pausa:   time bewtween ticker-items in ms   6 idx:    start with  tList[idx],
   3 currPos: actual char-position,              7 theID:  element-id of the ticker-container
   4 tLen:    lenghth of the tList-array,
*/
function showTicker(cSpeed,pausa,currPos,tLen,cLen,idx,theID){var tic=document.getElementById(theID);tic.innerHTML=tList[idx].substring(0,currPos)+'_';if(currPos++==cLen){currPos=0;setTimeout(function(){showTicker(cSpeed,pausa,currPos,tLen,cLen,idx,theID);},pausa);idx++;if(idx==tLen){idx=0;} cLen=tList[idx].length;}else{setTimeout(function(){showTicker(cSpeed,pausa,currPos,tLen,cLen,idx,theID);},cSpeed);}}