/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var text="O Site Boleirage.com foi feito para você que quer saber tudo sobre seu ídolo, seja ele do meio esportivo ou artístico.  Além de reunirmos notícias sobre seu ídolo, nós ainda mantemos contato direto através do twitter, permitindo à você enviar mensagens diretamente aqui do site.";
var delay=50;
var currentChar=1;
var destination="[not defined]";

function type()
{
  if (document.getElementById)
  {
    var dest=document.getElementById(destination);
    if (dest)
    {
      dest.innerHTML=text.substr(0, currentChar);
      currentChar++
      if (currentChar>text.length)
      {
        currentChar=1;
        setTimeout("type()", 5000);
      }
      else
      {
        setTimeout("type()", delay);
      }
    }
  }
}
function startTyping(textParam, delayParam, destinationParam)
{
  text=textParam;
  delay=delayParam;
  currentChar=1;
  destination=destinationParam;
  type();
}



