function flyout () {
	browser=navigator.appName;
	version=navigator.appVersion.substring(0,1);
	if((document.all) && (browser == "Microsoft Internet Explorer") && (version == "6")){ }
	else{
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("header").childNodes[0];
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover = function() {
						this.className+=" flyout-js-over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" flyout-js-over", "");
					}
				}
			}
		}
	}
}