<!--
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(12)
typ[0]=" •••   ******** Alquiler de Cabañas en El Trapiche ********  "
typ[1]=" •••  ****** Turismo en San Luis - Turismo en El Trapiche   ******  "
typ[2]=" •••    **** Departamentos Amoblados Temporarios en San Luis ****  "
typ[3]=" •••   *** Restaurante en El Trapiche - Donde Comer en El Trapiche ***"
typ[4]=" •••    *** Departamentos Amueblados - Departamentos Amoblados ***"
typ[5]=" •••   *** Cabañas en San Luis - Cabañas en El Trapiche *** "
typ[6]=" •••     ******** Vacaciones en San Luis - El Trapiche ********  "
typ[7]=" •••   ******** Cabañas por Dia - Cabañas por Semana ********  "
typ[8]=" •••   **** Hospedaje en El Trapiche - Hoteles en El Trapiche**** "
typ[9]=" •••   ***** Alquiler Temporario - Departamentos Temporarios ***** "
typ[10]=" •••   **** Alojamiento en El Trapiche - Alojamiento en San Luis ****"
typ[11]=" •••  ***** Vacaciones en San Luis - Vacaciones en El Trapiche ***** "
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()
