// This script controls primary navigation rollover //

	function showmenu(elmnt) {
		document.getElementById(elmnt).style.visibility = "visible"
		document.getElementById(elmnt).src = "/img/shared/top-hover.png"
		}

	function hidemenu(elmnt) {
		document.getElementById(elmnt).style.visibility = "hidden"
		document.getElementById(elmnt).src = "/img/shared/top-blank.gif"
		}
	
// This script controls secondary navigation rollover //

	function upmenu(elmnt) {
		document.getElementById(elmnt).style.backgroundImage = "url(\'/img/shared/top-item-hover.png')"
		document.getElementById(elmnt).style.backgroundColor = "#828a9b"
		document.getElementById(elmnt).style.backgroundRepeat = "no-repeat"
		document.getElementById(elmnt).style.color = "white"
		}

	function downmenu(elmnt) {
		document.getElementById(elmnt).style.background = "url(\'/img/shared/top-item.png')"
		document.getElementById(elmnt).style.color = "#605d5c"
		}

// This script controls tertiary (rightside) navigation rollover //

	function upright(elmnt) {
		document.getElementById(elmnt).style.background = "url(\'/img/shared/right-hover.png') #b6b4a3 no-repeat"
		document.getElementById(elmnt).style.color = "white"
		}

	function downright(elmnt) {
		document.getElementById(elmnt).style.background = "url(\'/img/shared/right-item.png')"
		document.getElementById(elmnt).style.color = "#757152"
		}


	function hideimg(elmnt) {
		document.getElementById(elmnt).style.visibility = "hidden"
		}
