//<![CDATA[
					 
//地図を作成
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.setCenter(new GLatLng(34.3510318771531,132.53587871789932), 15);

//オリジナルマーカー
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);

//マーカー1
var marker1 = new GMarker(new GLatLng(34.3510318771531,132.53587871789932),icon);
GEvent.addListener(marker1, "click", function() {
marker1.openInfoWindowHtml("<h4>日の出湯</h4><a href=\"#hin\">この銭湯の詳細はこちら</a>");
});
map.addOverlay(marker1);

//]]>
