// JavaScript Document
<!--
/*
new menu
*/

startList = function() {
			navRoot1 = document.getElementById("nav");
			Add(navRoot1);

			function Add(navRoot) {
				if (document.all&&document.getElementById) {
					for (i=0; i<navRoot.childNodes.length; i++) {
						node = navRoot.childNodes[i];
						if (node.nodeName=="LI") {
							for (ii=0; ii<node.childNodes.length; ii++) {
								 if (node.childNodes[ii].nodeName == "UL") {
									if (document.all&&document.getElementById) {
									   UlNode = node.childNodes[ii];
									   for (iii=0; iii<UlNode.childNodes.length; iii++) {
											UlLiNode = UlNode.childNodes[iii];
											if (UlLiNode.nodeName=="LI") {
												UlLiNode.onmouseover=function() {
													this.className+=" over";
												}
												UlLiNode.onmouseout=function() {
													this.className=this.className.replace(" over", "");
												}
											}
									   }
									}
								 }

							}
							node.onmouseover=function() {
								this.className+=" over";
							}
							node.onmouseout=function() {
								this.className=this.className.replace(" over", "");
							}
						}
					}
				}
				return;
			}
}
window.onload=startList;


sfHover = function() {
	var sfEls = document.getElementById("sidebar1");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
			}
			}
			if (window.attachEvent) window.attachEvent("onload", sfHover);


//-->
