// JavaScript Document

			function toolbox_nodes_getActiveLink(root,url) {
			var refList = root.getElementsByTagName("a");
			var i = 0;
			while(refList[i]) {
			if (refList[i].href == url) {
			return refList[i];
			}
			i++;
			}
			}
			
			function toolbox_style_toggleDisplay(obj) {
			if (obj.style.display=='none') {
			obj.style.display = '';
			} else {
			obj.style.display='none';
			}
			}
			
			function activateMenu1() {
				var active = toolbox_nodes_getActiveLink(document.getElementById("menu1"),location);
				if (active != undefined){
				active.className = "active";
				}
			}