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();

		

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



		var address41 = new GLatLng(34.66160, 135.5181);
	}


					//地図の表示
					map.setCenter(address41, 14);
					var marker41 = new GMarker(address41, {icon: icon, title: "Flanders Gallery", draggable: false, dragCrossMove: false});
					map.addOverlay(marker41);
					//message
					var message41 ='<div>Flanders Gallery</div>';
					GEvent.addListener(marker41, "click", function(){
						marker41.openInfoWindowHtml(message41);
					});
}

