var max=0;

function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
    this[i]=textlist.arguments[i];
}

tl = new textlist(
  "Hothouse Design is a living embodiment of this principle, breathing it into every project it undertakes. It was founded in Shanghai, 2005. Hothouse Design is the creation of two men with a love for Asia, and a passion for developing an environment of original materials, quality lifestyle and fundamentally liveable spaces."
);

var x = 0; pos = 0;
var l = tl[0].length;


function textticker() {
  document.getElementById('typer').innerHTML = tl[x].substring(0, pos);
  if(pos++ == l) {
    pos = 0;
    if(++x == max) 
      x = 0;
    l = tl[x].length;
   } 
   else
   setTimeout("textticker()", 50);
}
