
  <!-- 
  message     = 
"Multe multumiri pentru vizita facuta si...^" +
"...daca vrei sa vezi noutati absolute...^" +
"...mergi in galeria tablourilor in relief...^"+
"...si profita de promotie pana la 30.09.2010!^"+


"^"
  scrollSpeed = 25
  lineDelay   = 1500

  // 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)
  