// drop-down menu helper for ie/win// supports nested drop-down menusnavListEvents = function() {	if (document.all&&document.getElementById) {		var menus = document.getElementById("dropdown-events").getElementsByTagName("ul");		for (i = 0; menus[i]; i++) {			menus[i].parentNode.onmouseover = function() {			this.className += " over";			this.style.zIndex=90;			}			menus[i].parentNode.onmouseout = function() {			this.style.zIndex=80;			this.className = this.className.replace(" over", "");			}		}	}}navListNews = function() {	if (document.all&&document.getElementById) {		var menus = document.getElementById("dropdown-news").getElementsByTagName("ul");		for (i = 0; menus[i]; i++) {			menus[i].parentNode.onmouseover = function() {			this.className += " over";			this.style.zIndex=90;			}			menus[i].parentNode.onmouseout = function() {			this.style.zIndex=80;			this.className = this.className.replace(" over", "");			}		}	}}navListPhotos = function() {	if (document.all&&document.getElementById) {		var menus = document.getElementById("dropdown-photos").getElementsByTagName("ul");		for (i = 0; menus[i]; i++) {			menus[i].parentNode.onmouseover = function() {			this.className += " over";			this.style.zIndex=90;			}			menus[i].parentNode.onmouseout = function() {			this.style.zIndex=80;			this.className = this.className.replace(" over", "");			}		}	}} init = function() {	navListEvents();	navListNews();	navListPhotos(); }window.onload=init;