    //<![CDATA[
    var markers = [];
	var marker_html = [];
	var counter = 0;
    function onLoad() {
	window.focus();
	if (GBrowserIsCompatible()) {
		var map = new GMap(document.getElementById("map"));
		map.centerAndZoom(new GPoint(135.17103, 34.678100), 1);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setMapType(G_NORMAL_MAP);
		
		map.removeMapType(G_HYBRID_MAP);
		map.removeMapType(G_SATELLITE_MAP);
		map.removeMapType(G_NORMAL_MAP);
		
			function addMarker(map, point, html) {
				var marker = new GMarker(point);
				GEvent.addListener(marker, "click", function() {  });
				markers[counter] = marker;
				marker_html[counter] = html;
				counter++;
				return marker;
			}
		var point = new GPoint(135.17103, 34.678100);
		var marker = addMarker(map, point, "");
		map.addOverlay(marker);
		var offset = new GSize(0, -20);
		map.openInfoWindowHtml(point,'<img src="http://goldenparco.com/img/icon/gmap_logo.jpg" align=left><font style="font-size:12px;">神戸福原ソープランド<br/><a href="http://www.goldenparco.com">ゴールデンパルコ</a><br/>TEL:(078)577-7891</font>', offset);
		GEvent.addListener(marker,"click",function(){
			map.openInfoWindowHtml(point,'<img src="http://goldenparco.com/img/icon/gmap_logo.jpg" align=left><font style="font-size:12px;">神戸福原ソープランド<br/><a href="http://www.goldenparco.com">ゴールデンパルコ</a><br/>TEL:(078)577-7891</font>', offset)
		});

		} else {
			alert("Sorry, the Google Maps API is not compatible with this browser.");
		}
	}
	function click_sidebar(idx) {
		markers[idx].openInfoWindowHtml(marker_html[idx]);
	}
	//]]>
	
