var tempo = 50;
var chars = 10;
var texto = "Welcome to G L E N V I E W  Cottage - Fàilte gu G L E N V I E W  Cottage";
var wtexto = new Array(33);
wtexto[0] = texto;
var blnk = "                                              ";
for (i = 1; i < 32; i++) {
b = blnk.substring(0, i);
wtexto[i] = "";
for (j = 0; j < texto.length; j++) wtexto[i] = wtexto[i] + texto.charAt(j) + b;
}
function animastatus() {
if (chars > -1) str = wtexto[chars]; 
else str = wtexto[0];
if (chars-- < -40) chars = 31;
status = str;
clearTimeout(tempo);
tempo = setTimeout("animastatus()", 60);
}
animastatus()
