<!-- Hide from old browsers
  message = " Le Collane di Eva. © 2008. Tutti i diritti riservati.                     ^" +
                                  " Collane e gioielli artigianali. Roma                        ^" +
                                  " Per informazioni info@lecollanedieva.it.                    ^" +
              			          " Per una corretta visualizzazione è necessario un browser che supporti                    ^" +
                                  " la trasparenza delle immagini PNG, come IE 7.                     ^" +
                                  "                     ^"

  scrollSpeed = 40
  lineDelay   = 10
  // 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)
