  message     = "Suadi Signs Media ... ^" +
                "Breaking The Usual ! ^" +
                "Special Projects ... ^" +
                "Bridges Signs ...^" +
                "Pillars Signs ... ^" +
                "Prisma ... ^" +
                "Light Boxes ... ^"+
                "Unipoles ... ^"+
                "wall Signs ... ^"+
                "Roof Signs ... ^"+
                "^"
  scrollSpeed = 25
  lineDelay   = 2000

  //Haisam -Saudi Signs M site outline  - Don't Change any code below this comment  //

  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)
