<!--


var speed = 40 
var pause = 3000 
var timerID = null 
var bannerRunning = false
var ar = new Array()
ar[0] = "We are a family owned and operated kennel."
ar[1] = "Our dogs are all house and family socialized"
ar[2] = "We focus on working-line German Shepherd dogs"
ar[3] = "We breed for sound-temperament, creating suitable companion dogs"
ar[4] = "Check out our NEW LITTER POSTINGS!."
ar[5] = "SCHRADERHAUS K9 is located in Roy, WA (USA)."
ar[6] = "Give us a call at +1.253.843.1123 PST."
ar[7] = "Check back frequently...  We are constantly updating this site with new info!"
ar[8] = "We are updating a lot of the SCHRADERHAUS K9 web pages currently... Let us know what you think!"
ar[9] = "Send us an email! Leave us your comments and questions at jean@schraderhausk9.com."
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
					}
							}
// -->
