// JavaScript Document
  message     = "Camping la romiguiere^" +
                "La romiguiere Self Catering Mobile Home^" +
				"Family Camping holidays^" +
				"Superbly equipped self catering mobile home^" +
				"Specialise in offering family camping holidays in France^" +
				"Call us +33 (0) 565 444 464, email : campinglaromiguiere@wanadoo.fr^" +
                "^"
  scrollSpeed = 50
  lineDelay   = 500
  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)
