function initialize() {
	if (GBrowserIsCompatible()) {

		//コンテナの取得、地図の作成
		var map = new GMap2(document.getElementById("detail-map"));

		// ====== Restricting the range of Zoom Levels =====
		// Get the list of map types      
		var maptype = map.getMapTypes();
		// Overwrite the getMinimumResolution() and getMaximumResolution() methods
		for (var i=0; i<maptype.length; i++) {
			maptype[i].getMinimumResolution = function() {return 8;}
			maptype[i].getMaximumResolution = function() {return 19;}
		}

		//マップコントローラを付ける
		map.addControl(new GSmallMapControl());

		//アイコンの表示
		var icon = new GIcon();

		

		
		
		
		
		var icon138 = new GIcon();
		icon138.image = "http://www.f-l-a-g.net/common/images/icon/ico_event.png";
		icon138.shadow = "http://www.f-l-a-g.net/common/images/icon/ico_map01_shadow.png";
		icon138.iconSize = new GSize(27, 37);
		icon138.shadowSize = new GSize(61, 42);
		icon138.iconAnchor = new GPoint(16, 37);
		icon138.infoWindowAnchor = new GPoint(45, 10);
		icon138.infoShadowAnchor = new GPoint(61, 37);
		



		var address138 = new GLatLng(34.688706, 135.56043);
	}


					//地図の表示
					map.setCenter(address138, 14);
					var marker138 = new GMarker(address138, {icon: icon, title: "Fabre 8710", draggable: false, dragCrossMove: false});
					map.addOverlay(marker138);
					//message
					var message138 ='<div>Fabre 8710</div>';
					GEvent.addListener(marker138, "click", function(){
						marker138.openInfoWindowHtml(message138);
					});
}

