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 icon6 = new GIcon();
		icon6.image = "http://www.f-l-a-g.net/common/images/icon/ico_star.png";
		icon6.shadow = "http://www.f-l-a-g.net/common/images/icon/ico_star01_shadow.png";
		icon6.iconSize = new GSize(19, 19);
		icon6.shadowSize = new GSize(30, 20);
		icon6.iconAnchor = new GPoint(19, 19);
		icon6.infoWindowAnchor = new GPoint(0, 0);
		icon6.infoShadowAnchor = new GPoint(0, 0);
		
		



		var address6 = new GLatLng(34.696104, 135.505315);
	}


					//地図の表示
					map.setCenter(address6, 14);
					var marker6 = new GMarker(address6, {icon: icon, title: "Cahier (カイエ株式会社)", draggable: false, dragCrossMove: false});
					map.addOverlay(marker6);
					//message
					var message6 ='<div>Cahier (カイエ株式会社)</div>';
					GEvent.addListener(marker6, "click", function(){
						marker6.openInfoWindowHtml(message6);
					});
}

