  <!-- Hide from old browsers



  message     = "Welcome to Creative Stock Images :: A constantly growing library of superb quality royalty free images.^" +

                "We'll be adding even more images to the Royalty Free Image library each Month.^" +
                "Buy the images now and immediately download from as little as £26.99!^" +
                               
                "^"
  scrollSpeed = 20
  lineDelay   = 3500

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