<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
			
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
				
			}
			for (o=0; o<node.childNodes.length; o++) {
				subnode = node.childNodes[o];
				for (p=0; p<subnode.childNodes.length; p++) {
					subnode2 = subnode.childNodes[p];
					if (subnode2.nodeName=="LI") {
						subnode2.onmouseover=function() {
							this.className+=" over";
						}
						subnode2.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}
	}
}
window.onload=startList;


//--><!]]>

	if (document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onclick=function() {
					for (d=0; d<this.childNodes.length; d++) {
						node = this.childNodes[d];
						if (node.nodeName=="A") {
							document.location.href=node.href;
						}
					}
				}
			}
			for (o=0; o<node.childNodes.length; o++) {
				subnode = node.childNodes[o];
				for (p=0; p<subnode.childNodes.length; p++) {
					subnode2 = subnode.childNodes[p];
					if (subnode2.nodeName=="LI") {
						subnode2.onclick=function() {
							for (d=0; d<this.childNodes.length; d++) {
								node = this.childNodes[d];
								if (node.nodeName=="A") {
									document.location.href=node.href;
								}
							}
						}
					}
				}
			}
		}
	}