window.onload = init;
function init() {
	docUrl = document.location.href;
	var menuFields = document.getElementById('menu_fields');
	var menuLinks = menuFields.getElementsByTagName("a");
	for (i=0;i<menuLinks.length;i++) {
		if (docUrl == menuLinks[i]) {
			var currentHighlite = menuLinks[i].previousSibling;
			currentHighlite.src = "images/menu/menubullethigh.gif";
		};
		menuLinks[i].onmouseover = highlite;
	}	
}

function highlite(e) {
		if (!e) e = window.event;
		if (e.target) targ = e.target;
		else if (e.srcElement) targ = e.srcElement;
		if (targ.nodeType == 3) targ = targ.parentNode;
		var marker = targ.parentNode.previousSibling;
		marker.src = "images/menu/menubullethigh.gif";
		if (document.location.href != this) {this.onmouseout = function () {marker.src = "images/menu/menubullet.gif"} };
}