<!--
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]=" •••  *** Aesthetic Surgery - Plastic Surgery ***  "
typ[1]=" •••  *** Breast Enlargement - Breast Operation ***  "
typ[2]=" •••  *** Surgery of the Nose - Nose Operation ***  "
typ[3]=" •••  *** Eyelid Surgery - Breast Surgery ***  "
typ[4]=" •••  *** Plastics Surgeons - Aesthetics Surgeons ***  "
typ[5]=" •••  *** Facial Rejuvenantion · Rejuventacion of the Face ***  "
typ[6]=" •••  *** Cirugia Plastica - Cirugia Estetica ********  "
typ[7]=" •••  *** Capillary Implants · Hair Implants ***  "
typ[8]=" •••  *** Bosom Reduction - Breast Reduction ***  "
typ[9]=" •••  *** Prominent Ears - Surgery of the Ears ***  "
typ[10]=" ••• *** Dental Implants - Dental Whitening ***  "
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()