function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(40.0223820, -105.2707330), 15);
		map.setUIToDefault();
		var point = new GLatLng(40.0223820, -105.2707330);
		map.addOverlay(new GMarker(point));
		this.clickable = options.clickable || true;
	}
}





