function ttchangecontent(){
  if (index>=fcontent.length)
    index=0
  if (DOM2){
    document.getElementById("ThinkTron_fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
    document.getElementById("ThinkTron_fscroller").innerHTML=begintag+fcontent[index]+closetag
	document.getElementById('tickertitle').innerHTML=title[index];
    if (fadelinks)
      ttlinkcolorchange(1);
    ttcolorfade(1, 15);
  }
  else if (ie4)
    document.all.ThinkTron_fscroller.innerHTML=begintag+fcontent[index]+closetag;
  index++
}

function ttlinkcolorchange(step){
  var obj=document.getElementById("ThinkTron_fscroller").getElementsByTagName("A");
  if (obj.length>0){
    for (i=0;i<obj.length;i++)
      obj[i].style.color=ttgetstepcolor(step);
  }
}

function ttcolorfade(step) {
  if(step<=maxsteps) {	
    document.getElementById("ThinkTron_fscroller").style.color=ttgetstepcolor(step);
    if (fadelinks)
      ttlinkcolorchange(step);
    step++;
    fadecounter=setTimeout("ttcolorfade("+step+")",stepdelay);
  }else{
    clearTimeout(fadecounter);
    document.getElementById("ThinkTron_fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")";
	setTimeout("ttchangecontent()", delay);
  }
}

function ttgetstepcolor(step) {
  var diff;
  var newcolor=new Array(3);
  for(var i=0;i<3;i++) {
    diff = (startcolor[i]-endcolor[i]);
    if(diff > 0) {
      newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
    } else {
      newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
    }
  }
  return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
}
