<!--
var current = 0
var x = 0
var speed = 20
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(10)
typ[0]=" ••••• Colocacion de Implantes Dentales "
typ[1]=" ••••• Odontologos para Implantes - Centro de Implantes "
typ[2]=" ••••• Blanqueamiento Dental - Blanqueamiento de Dientes "
typ[3]=" ••••• Centros de Odontologia - Consultorios de Odontologia "
typ[4]=" ••••• Ortodoncia Estetica - Ortodoncia Dental "
typ[5]=" ••••• Odontologos en Buenos Aires - Odontologos en Barrio Norte "
typ[6]=" ••••• Estetica Dental - Estetica en la Sonrisa "
typ[7]=" ••••• Colocacion de Carillas · Colocacion de Implantes "
typ[8]=" ••••• Consultorios Odontologicos - Centros Odontologicos "
typ[9]=" ••••• Cursos de Implantes Dentales - Cursos de Implantologia "
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()
