// JavaScript Document
	function shownav(zap) {
		if (document.getElementById) {
			var nav = new Array("government", "history","video", "learning", "police", "construction", "services", "programs", "phone", "contact");
			for (x = 0; x < nav.length; x++) {
				var abra = document.getElementById(nav[x]).style;
				if (nav[x] == zap) {
					if (abra.display == "block") {
						abra.display = "none";
					} else {
						abra.display = "block";
					}
				} else {
					abra.display = "none";
				}
			}
			return true;
		} else {
			return true;
		}
	}
function contacts(zap) {
		if (document.getElementById) {
			var abra = document.getElementById(zap).style;
			if (abra.display == "none") {
				abra.display = "block";
				document.getElementById("showhide").firstChild.data = "Hide Contact Information";
			} else {
				abra.display = "none";
				document.getElementById("showhide").firstChild.data = "Show Contact Information";
			}
			return false;
		} else {
			return true;
		}
	}