<!--
var current = 0;
var x = 0;
var speed = 70;
var speed2 = 2000;
function initArray(n)
{
  this.length = n;
  for (var i =1; i <= n; i++)
  {
    this[i] = ' ';
  }
}
typ = new initArray(12);
typ[0]="Visite o Florianópolis Shop - O Shopping Virtual de Florianópolis";
typ[1]="www.florianopolisshop.com.br";
typ[2]="Hospedagem com Divulgação Regional e Nacional";
typ[3]="Sem setup, taxa de transferência, anuidade, ... Cadastre-se e tenha hospedagem sem custo inicial";
typ[4]="Confira nossos planos - descontos especiais para pagamento semestral e anual";
typ[5]="Suporte PHP, MYSQL, HTML, FLASH, JAVASCRIPT, ...";
typ[6]="Registro de domínios - Domínio Nacional .com.br - Pague apenas taxa NIC.BR R$ 30,00/ano";
typ[7]="Registro de domínios - Domínio Internacional .com, .net - Pague apenas taxa INTERNIC R$ 40,00/ano";
typ[8]="Implante um Comércio Eletrônico no Seu Site - veja aqui como fazer";
typ[9]="Sistema Faça Você Mesmo - Tenha seu Site com Administração Própria - Tudo Online";
typ[10]="Temos soluções prontas: Imobiliária, Hotel/Pousada, Agência de Veículos - veja aqui como ter a sua";
typ[11]="  G  I  N  F  O  -  I  n  t  e  r  n  e  t";
function typewrite()
{
  var m = typ[current];
  window.status = m.substring(0, x++) + "_";
  if (x == m.length + 1) 
  {
    x = 0;
    current++;
    if (current > typ.length - 1) 
    {
      current = 0;
    }
    setTimeout("typewrite()", speed2);
  }
  else 
  {
    setTimeout("typewrite()", speed);
  }
}
typewrite();
//-->

