//<!--www.DesignerWiz.com Free Complete Web Development Resource Center
var speed = 50
var pause = 2000
var timerID = null
var bannerRunning = false
var ar = new Array()
ar[0] = "Cuboingo Quote: \"Kicks the sh** out of all other games!\""
ar[1] = "Cuboingo Quote: \"Combines the Rubik's Cube of the seventies and Tetris of the eighties!\""
ar[2] = "Cuboingo Quote: \"Addiction alert!!!\""
ar[3] = "Cuboingo Quote: \"At first, I thought it was an old dog... But boy, can you teach it new tricks!\""
ar[4] = "Cuboingo Quote: \"Wow. That says most of it.\""
ar[5] = "Cuboingo Quote: \"The open-ended level editor means that it'll never get boring!\""
ar[6] = "Cuboingo Quote: \"All I had to do was turn off my targeting computer...\""
ar[7] = "Cuboingo Quote: \"Though it takes a few minutes to learn, becoming really good is hard.\""
ar[8] = "Cuboingo Quote: \"As addictive as it is fun, [it] just rocks.\""
ar[9] = "Cuboingo Quote: \"Grind your fingers down to nothing -- and then go back and do it all over again!\""
ar[10] = "Cuboingo Quote: \"My 7 year old girl is now hooked, and I blame you!\""
ar[11] = "Cuboingo Quote: \"Even my mother likes to play [it]!\""
ar[12] = "Cuboingo Quote: \"Adrenaline surge!\""
ar[13] = "Cuboingo Quote: \"That game... it's evil. You can't put it down.\""
ar[14] = "Cuboingo Quote: \"It's not like games where you keep playing because you're mad...\""
ar[15] = "Cuboingo Quote: \"I finally made it to level 7, then my fingers fell off. My lawyers will be in touch...\""
ar[16] = "Cuboingo Quote: \"It makes me crazy... A few more hours and perhaps I will get it.\""
ar[17] = "Cuboingo Quote: \"I got to stop now to make dinner... Well, the kids can wait a little...\""
ar[18] = "Cuboingo Quote: \"The simplicity of Cuboingo is what makes it so fun!\""
ar[19] = "Cuboingo Quote: \"Once you start, it's awfully hard to stop!\""
//Change var www.DesignerWiz.com bannerRunning message
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
		offset++
		timerID = setTimeout("showBanner()", speed)
		bannerRunning = true
	} else {
		offset = 0
		currentMessage++
		if (currentMessage == ar.length)
			currentMessage = 0
		timerID = setTimeout("showBanner()", pause)
		bannerRunning = true
	}
}
// -->