<!--
  var x = 0
  var y = 0
  var z = 140
  var delay = 70
  var text = "Motorabilia, Complete motoring obsession. Models, prints, books, pictures, information, caps, memorabilia and much more.                              Motorabilia is committed to customer service and providing a product that represents excellent value for money.                        The Motorabilia Shop, Perth, Western Australia - 1:18 diecast Models, books, caps, memorabilia, prints, pictures, infromation, posters, all manner of motoring madness!"
  while (y ++ < z) {
  text = " " + text
  }

  function scroller() {
  window.status = text.substring(x++, text.length);
  if (x == text.length)  {
  x = 0;
  }
  setTimeout("scroller()", delay);
  }

  scroller();

 //--> 