// Functions

//	functions to control mouse-over, out, and click and to set Status bar message
function imageOn(imgName) {
	if (document.images) {
		document.images[imgName].src = onImgArray[imgName].src
	}
}
function imageOff(imgName) {
	if (document.images) {
		document.images[imgName].src = stdImgArray[imgName].src
	}
}



function setMsg(msg) {
window.status = msg
return true
}

//	functions for control of expandable sub menu (not implemented yet)
	


	// function for navigation
function navGetLink(url) {
	location.href = url
}