<!--
var current = 0
var x = 0
var speed = 30
var speed2 = 3000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]=" •••  *** Cirugia Estetica - Cirugia Plastica ***  "
typ[1]=" •••  *** Aumento de Mamas - Aumento de Senos ***  "
typ[2]=" •••  *** Cirugia de Nariz - Operacion de Nariz ***  "
typ[3]=" •••  *** Levantamiento de Parpados - Levantamiento de Mamas ***  "
typ[4]=" •••  *** Cirujanos Plasticos - Cirujanos Esteticos ***  "
typ[5]=" •••  *** Rejuvenecimiento Facial · Rejuvenecimiento de la Cara ***  "
typ[6]=" •••  *** Cirugia Plastica - Cirugia Estetica ********  "
typ[7]=" •••  *** Implantes Capilares · Implantes de Pelo ***  "
typ[8]=" •••  *** Reduccion de Pechos - Reduccion Mamaria ***  "
typ[9]=" •••  *** Orejas Prominentes - Cirugia de Orejas ***  "
typ[10]=" ••• *** Implantes Dentales - Blanqueamientos Dentales ***  "
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()