// JavaScript Document
var speed = 50 //decrease value to increase speed (must be positive) 
var pause = 10000 //increase value to increase pause
var timerID = null 
var bannerRunning = false
var ar = new Array()
ar[0] = "Welcome to Effizee.com - An extremely and proudly Nigerian Website"
ar[1] = "We are about everything Nigeria"
ar[2] = "We give you incisive, breaking and top News"
ar[3] = "Music, Videos, Chatroom and Discussion Forum"
ar[4] = "Browse our directory for all businesses both Big and Small, Government and Private ,Formal and Informal in Nigeria"
ar[5] = "A one stop shop where buyers meet sellers"
ar[6] = "Come in to advertise your - Vehicles, Properties, Job Openings and other items you want to sell"
ar[7] = "Hotels, Restaurants, Resorts, Leisure Places, Schools and any other legit outfit"
ar[8] = "We offer you a lot of freebies and goodies to make your visit worthwhile"
ar[9] = "Free Recharge Cards, Online Question and Answer games, Free SMS, Loyalty Gifts and more"
ar[10] = "Effizee.com is designed and developed by:"
ar[11] = "DataByte Infotech services......adding a touch of professionalism"
var currentMessage = 0
var offset = 0
function stopBanner() {
	if (bannerRunning)
		clearTimeout(timerID)
		bannerRunning = false
		}
function startBanner() {
		stopBanner()
		showBanner()
}
function showBanner() { 
		var text = ar[currentMessage]
		if (offset < text.length) {
			if (text.charAt(offset) == " ")
			offset++ 
			var partialMessage = text.substring(0, offset + 1)
			window.status = partialMessage
			//document.formsearch.searchField.value = partialMessage
			offset++ 
			timerID = setTimeout("showBanner()", speed)
			bannerRunning = true
				} else {
			offset = 0
			currentMessage++
				if (currentMessage == ar.length)
					currentMessage = 0
					timerID = setTimeout("showBanner()", pause)
					bannerRunning = true
					}
							}
// -->

