//Copyright 2004. All rights reserved worldwide. William Ukoh for eWarp Multimedia and Design, Lagos, Nigeria.

<!-- Hide from old browsers

 message     = "Welcome to Diya, Fatimilehin & Company^" +
                "Real Estate Surveyors and Valuers^" +
                "Head Office: Plot 237B, Muri Okunola Street, Victoria Island^" +
				"Lagos, Nigeria^" +
                "For more information, please view our website or contact us at info@diya-fatimilehin.com^" +
                "^" +
				"^" +
				"^" +
				"^"
  scrollSpeed = 50
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText() {
	  var pos = 0;
    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 -->
