  messageStatus  = "For the latest news on Tame check out The Daily Mumble, bite-sized bits of ludicrous rubbish from the depths of my psyche^" +
		        "Looking for someone, somewhere or something in particular? Use my site search at the bottom of the page^" +
                "Over 5000 photos are contained within Tame Goes Wild - take a look at the TGW Web Gallery^" +
                "Tame is currently in the UK - check out About The Tame to find out where and why!^" +
                "Have you seen my stunning collection of videos? Take a peek at my mini feature films in Videos and Voices^" +
                "Feedback welcomed via my guestbook or email - click on the links at the top of the page^" +
                "^" +
		"^"
  scrollSpeed = 25
  lineDelay   = 5000
  // Do not change the text below //
  txt         = ""

  function scrollText(pos) {
    if (messageStatus.charAt(pos) != '^') {
      txt    = txt + messageStatus.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == messageStatus.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
   }

scrollText(0)
