function scrollTo(location) {		currentLocation = aLocations[location];				currentMarker = currentLocation[0];		html = currentLocation[2];		markerLocation = currentLocation[3];				// map.setZoom(7);		map.setCenter(markerLocation, 7)		currentMarker.openInfoWindowHtml(html);	}							function menuClick() {			var elements = this.getElementsByTagName("ul");						if(elements.length > 0) {				var currentElement = elements[0];				if (YAHOO.util.Dom.getStyle(currentElement, "display") == "none") {					YAHOO.util.Dom.setStyle(currentElement, "display", "block");				} else {					YAHOO.util.Dom.setStyle(currentElement, "display", "none");				} 			}		}				function checkParent(el) {			var parentsParent = el.parentNode.parentNode;						if(parentsParent.tagName != "LI") {				YAHOO.util.Event.addListener(el, "click", menuClick);			}		}				function init() {			var elements = YAHOO.util.Dom.getElementsBy(checkParent, "li", "sidebar");		}				YAHOO.util.Event.addListener(window, "load", init);