

startList_jo = function() {
	if(!document.body.currentStyle) return;
    var subs = document.getElementsByName('submenu');
	if (document.all&&document.getElementById) {
		var navRoot = document.getElementById("leftMenu");
		for(var i=0;i<navRoot.childNodes.length;i++){
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				
				node.onmouseover=function(){
					this.lastChild.style.visibility = 'visible';
				}
				node.onmouseout=function(){
					this.lastChild.style.visibility = 'hidden';
				}
			}
		}
	}
}

startList = function() {
    if(!document.body.currentStyle) return;
    var subs = document.getElementsByName('submenu');
    for(var i=0; i<subs.length; i++) {
       var li = subs[i].parentNode;
       if(li && li.lastChild.style) {
          li.onmouseover = function(){this.lastChild.style.visibility = 'visible';}
          li.onmouseout = function(){this.lastChild.style.visibility = 'hidden';}
       }
    }
}

