  message     = 	"Visit our showroom at Hemel Hempstead Herts 5 minutes from the M25 & M1^" +
                	"We are open from Monday to Saturday 9.00am to 5.00pm^" +
		"and 9.30am to 1.30pm on Sunday^" +
		"If you wish to see one of our designers, please ensure you make an appointment before you visit^" +
               	 "^"
  scrollSpeed = 40
  lineDelay   = 2000

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

scrollText(0)
