//<script language="JavaScript">

  <!--TEXTE DEFILANT GAUCHE VERS DROITE
  message_1     = "Bienvenue au centre de parapente Evolène - Région^" +
  				"^" +
                "Tous les jours : VOLS BIPLACES DECOUVERTE. ^" +
				"^" +
				"Et bien sûr ; Journées découvertes, stages Touch and Go, vols au clair de lune, ... ^" +
				"^" +
                "BONS VOLS et à bientôt. Sam^" +
                "^"
  scrollSpeed_1 = 50
  lineDelay_1   = 1500
  txt_1         = ""

  function scrollText(pos_1) {
    if (message_1.charAt(pos_1) != '^') {
      txt_1    = txt_1 + message_1.charAt(pos_1)
      status = txt_1
      pauze  = scrollSpeed_1
    }
    else {
      pauze = lineDelay_1
      txt_1   = ""
      if (pos_1 == message_1.length-1) pos_1 = -1
    }
    pos_1++
    setTimeout("scrollText('"+pos_1+"')",pauze)
  }

//</script>