// JavaScript Document
<!-- 
ScrollSpeed = 500;  // milliseconds between scrolls
ScrollChars = 1;    // chars scrolled per time period
 
function SetupTicker() {
  // add space to the left of the message
  msg = " ***** Antena 2 Sonorizações *****  ( Sonorização -  Iluminação -  Palco - Shows - Eventos )   ";
   RunTicker();}
 
function RunTicker() {
  window.setTimeout('RunTicker()',ScrollSpeed);
  window.status = msg;
  msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}
SetupTicker();
 
<!-- end -->