  <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat
    				//
  				//
				//

  message     = "Richard & Gill Beaumont would like to welcome you to Peppers.^" +
 				 "5 star City centre salons.^" +
				 "Friendly professional atmosphere, care and attention at all times.^" +
				"This site contains information on the Beauty & Hairdressing treatments and products available at both salons.^" +
                "Salons are open Mon - Sat, 9.00 - 5.30.^" +
                "Late night opening in Exeter on a Tuesday & Thursday.^" +
                "Late night opening in Exmouth on Thursdays.^" +
                "Free 15 minute consultation is available on any aspect of treatments.^" +
                "Students and nurses are entitled to 10% discount Monday to Friday.^" +
                "Contact the Exeter Salon on: 01392 27 48 13.^" +
                "Contact the Exmouth Salon on: 01395 27 28 29.^" +
				"Thank you for your time on our web site. We hope to see you soon.^" +
				

"^" +
"^" +
"^"
  scrollSpeed = 75
  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)
  }

  // Unhide -->
scrollText(0)