function load() {
if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl(300));

	var centerLatitude = 33.576268;
	var centerLongitude = 130.372216;
	var startZoom = 18;
	map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);

	var icon = Array();
	icon = new GIcon();
	icon.image = "http://www.movimap.net/mapsearch/mt-static/marker/marker.gif";
	icon.iconSize = new GSize(37, 38);
	icon.iconAnchor = new GPoint(10, 34);
	icon.infoWindowAnchor = new GPoint(10, 1);





		function createMarker(point,html) {
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml(html);
		});
		return marker;
		}

var point = new GLatLng(33.576268,130.372216);
var marker = createMarker(point,'<div class="infowindow"><h2>アネックス地所株式会社</h2><div class="infowindow-inner"><p>〒814-0103 <br />\n福岡市城南区鳥飼５丁目7-1石村ﾋﾞﾙ<br />\n092-841-8286　</p><div class="jumpurl"><p><a href="http://www.movimap.net/" target="_blank">⇒福岡ムビマップはこちら</a></p></div></div></div>');
map.addOverlay(marker);

}
}

