<!--
	if (parseInt(navigator.appVersion) >= 3) {
	
		off = new MakeArray(9)
		on = new MakeArray(9)
		imgName = new MakeArray(9)
		blurb = new MakeArray(10)

		off[1].src = "images/about1.gif"
		off[2].src = "images/signs1.gif"
		off[3].src = "images/services1.gif"
		off[4].src = "images/community1.gif"
		off[5].src = "images/support1.gif"
		off[6].src = "images/faqs1.gif"
		off[7].src = "images/contact1.gif"
		off[8].src = "images/news1.gif"
		off[9].src = "images/employ1.gif"

		on[1].src = "images/about2.gif"
		on[2].src = "images/signs2.gif"
		on[3].src = "images/services2.gif"
		on[4].src = "images/community2.gif"
		on[5].src = "images/support2.gif"
		on[6].src = "images/faqs2.gif"
		on[7].src = "images/contact2.gif"
		on[8].src = "images/news2.gif"
		on[9].src = "images/employ2.gif"
		
		imgName[1] = "nav1"
		imgName[2] = "nav2"
		imgName[3] = "nav3"
		imgName[4] = "nav4"
		imgName[5] = "nav5"
		imgName[6] = "nav6"
		imgName[7] = "nav7"
		imgName[8] = "nav8"
		imgName[9] = "nav9"
		
		blurb[1] = "Learn more about Riverbend Center for Mental Health."
		blurb[2] = "What are mental and addictive illnesses?"
		blurb[3] = "We offer a variety of services and treatment programs for Adults and Youth."
		blurb[4] = "."
		blurb[5] = "Our place in the community."
		blurb[6] = "See available employment listings with ACHA."
		blurb[7] = "Take a look at our most frequently asked questions."
		blurb[8] = "Contact our employees."
		blurb[9] = "View the ACHA calendar."
		blurb[10] = "Find out how to apply for housing."
	}

	function MakeArray(n) {

		this.length = n;
		for (var i = 1; i<=n; i++) {
			this[i] = new Image();
		}
		return this;
	}

	function msover(num) {

		if (parseInt(navigator.appVersion) >= 3) {			
		
			document.images[imgName[num]].src = on[num].src;
			window.status = blurb[num];
		}
	}

	function msout(num) {

		if (parseInt(navigator.appVersion) >= 3) {
		
	    	document.images[imgName[num]].src = off[num].src;
	    	window.status = blurb[12];
		}	            

	}	
// -->
