<!--
var delay=3000; //pausa (en milisegundos)

var fcontent=new Array();
var index=0;

function setupmarquee(){
    var initialtext = document.getElementById("fscroller").innerHTML.split('==');
    for(var i=0; i < initialtext.length; i++) {
      fcontent[i] = initialtext[i].replace(/^\s+|\s+$/g,"");
    }
    changecontent();
}

//function to change content
function changecontent(){
  if (index>=fcontent.length)
    index=1; // Saltamos contenido de splash [0]

  document.getElementById("fscroller").style.color="rgb(255,255,255)"
  document.getElementById("fscroller").innerHTML=fcontent[index]
  colorfade()
  index++
  setTimeout("changecontent()",delay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
frame=20;
hex=255;  // Initial color value.

function colorfade() {
  // 20 frames fading process
  if(frame>0) {
    hex-=12; // decrease color value
    document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")";
    frame--;
    setTimeout("colorfade()",20);
  }
  else{
    document.getElementById("fscroller").style.color="rgb(0,0,0)";
    frame=20;
    hex=255;
  }
}

window.onload=setupmarquee
-->
