/*Copyright 2006. William Ukoh @ http://www.williamukoh.com. All rights reserved worldwide. This material remains a property of William Ukoh and should not used or otherwised distributed without the permission of the owner*/

<!-- Hide from old browsers

 message     = "Welcome TAKAii magazine's website^" +
                "We are actively involved in the exportation of Agricultural Commodities and Solid Minerals products^" +
                "Head Office: 50 Zik Avenue Uwani, Enugu^" +
				"Enugu State, Nigeria^" +
				"Phone Numbers: 234 802 392 9823, 234 805 280 4543^" +
                "For more information, please view our website or contact us at info@kennysconsult.com^" +
                "^" +
				"^" +
				"^" +
				"^" +
				"^" +
				"^"
  scrollSpeed = 25
  lineDelay   = 2000

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