function loadMap() {
	var mapOptions = {
		center: point,
		zoom: 14,
		mapTypeControl: true,
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
		navigationControl: true,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("map"),mapOptions);

	var markOptions = {
		map: map,
		position: point
	};
	var marker = new google.maps.Marker(markOptions);
	var info = new google.maps.InfoWindow({content: WINDOW_HTML});
	
	google.maps.event.addListener(marker, 'click', function() {
		info.open(map, marker);
	});
	google.maps.event.addListener(info, 'closeclick', function() {
		map.panTo(point);
	});

}

window.onload = function(){setTimeout('if (google.maps) loadMap();', 10);}
