//<![CDATA[
					 
//地図を作成
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.setCenter(new GLatLng(34.192404926276375,132.532576918602), 16);

//オリジナルマーカー
var icon = new GIcon();
icon.image = "lib/cont/icon_yu.png";
icon.iconSize = new GSize(28, 26);
icon.iconAnchor = new GPoint(14, 24);
icon.infoWindowAnchor = new GPoint(18, 11);

//マーカー
var marker1 = new GMarker(new GLatLng(34.19161953722726,132.53161132335663),icon);
GEvent.addListener(marker1, "click", function() {
marker1.openInfoWindowHtml("<h4>地蔵湯</h4><a href=\"#jiz\">この銭湯の詳細はこちら</a>");
});
map.addOverlay(marker1);

//]]>
