startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		if(navRoot != null)
		{
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						for (j=0; j<this.childNodes.length; j++) {
							if (this.childNodes[j].nodeName=="UL") {
								this.childNodes[j].style.display = 'block';
								hasClass = this.className.match("destinations");
								if (hasClass) {
									selects = document.getElementsByTagName("select");
									for(k=0;k<selects.length;k++) {
										selects[k].style.visibility = 'hidden';
									}
								}
							}
						}
					}
					node.onmouseout=function() {
						for (j=0; j<this.childNodes.length; j++) {
							if (this.childNodes[j].nodeName=="UL") {
								this.childNodes[j].style.display = 'none';
								selects = document.getElementsByTagName("select");
								for(k=0;k<selects.length;k++) {
									selects[k].style.visibility = 'visible';
								}
							}
						}
					}
				}
			}
		}
	}
}
window.onload=startList;
