
function startList() {
	if (document.all&&document.getElementById) {
		try {
			homeNode=document.getElementById("home").getElementsByTagName('li')[0];
			homeNode.onmouseover=function() {
				this.className+=" over";
			}
			homeNode.onmouseout=function() {
				this.className=this.className.replace(" over", "");
			}
		} catch(x){}
		navRoot = document.getElementById("kayakMenu");
		navRoot.onmouseover = function(){
			var selectboxes = document.getElementsByTagName("SELECT");
			for (i=0; i<selectboxes.length; i++) {
				selectboxes[i].style.visibility = "hidden";
			}
		};
		navRoot.onmouseout = function(){
			var selectboxes = document.getElementsByTagName("SELECT");
			for (i=0; i<selectboxes.length; i++) {
				selectboxes[i].style.visibility = "";
			}
		};
		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", "");
				}
				children=node.childNodes;
				for (j=0;j<children.length;j++) {
					child=children[j];
					if (child.nodeName=="UL") {
						for (k=0; k<child.childNodes.length; k++) {
							childItem = child.childNodes[k];
							if (childItem.nodeName=="LI") {
								childItem.onmouseover=function() {
									this.className+=" over";
								}
								childItem.onmouseout=function() {
									this.className=this.className.replace(" over", "");
								}
							}
						}
					}
				}
			}
		}
	}
}
//window.onload=startList;

window.init[window.init.length]=function(){startList();}

