function setStatus(msg)
{status = msg}
function MakeArray(n)
{
 this.lenght = n
 return this 
}
window.setTimeout('scrollit_r2l(100)',500);
function scrollit_r2l(seed)
{
 var msg="Welcome to Caer Neochiallach, ancestral home of Clan MacRogue.  Wi n0t trei a h0liday in Sweden thi yer? See the l0veli lakes. And mani interesting furry animals, Including the majestic m00se. A M00se once bit my sister ...  No realli!  She was Karving her initals on the m00se with the sharpened end of an interspace t00thbrush given by Svenge - her brother-in-law - an Oslo dentist and star of many Norwegian m0vies: The H0t Hands of an Oslo Dentist, Fillings of Passion, The Huge M0lars of Horst Nordfink........ OH!, and click on the castle to get in.";
 var out = " ";
 var c   = 1;
 if (seed > 100) {
 seed--;
 var cmd="scrollit_r2l(" + seed + ")";
 timerTwo=window.setTimeout(cmd,100);
}
else 
if (seed <= 100 && seed > 0) 
{
 for (c=0 ; c < seed ; c++) 
 {
  out+=" ";
 }
 out+=msg;
 seed--;
 var cmd="scrollit_r2l(" + seed + ")";
 window.status=out;
 timerTwo=window.setTimeout(cmd,100);
}
else 
if (seed <= 0) 
{
 if (-seed < msg.length) 
 {
  out+=msg.substring(-seed,msg.length);
  seed--;
  var cmd="scrollit_r2l(" + seed + ")";
  window.status=out;
  timerTwo=window.setTimeout(cmd,100);
 }
 else 
 {
  window.status=" ";
  timerTwo=window.setTimeout("scrollit_r2l(100)",75);
 }
}
}