		var display_url = 0;

		function showMenuIE5() {
			ie5menu.style.left = document.body.scrollLeft + event.clientX;
			ie5menu.style.top  = document.body.scrollTop + event.clientY;
			ie5menu.style.visibility = "visible";
			return false;
		}

		function hideMenuIE5() {
			ie5menu.style.visibility = "hidden";
		}

		function highlightIE5() {
			if (event.srcElement.className == "menuitems") {
				event.srcElement.style.backgroundColor = "highlight";
				event.srcElement.style.color = "white";
				event.srcElement.style.cursor = "hand";
				if (display_url == 1)
					window.status = event.srcElement.url;
			}
		}

		function lowLightIE5() {
			if (event.srcElement.className == "menuitems") {
				event.srcElement.style.backgroundColor = "#0033CC";
				event.srcElement.style.color = "#FFFFFF";
				window.status = '';
			}
		}

		function jumpToIE5() {
			if (event.srcElement.className == "menuitems")
				window.location = event.srcElement.url;
		}
