// グーグルマップ
function createMap() {
	var map = new GMap(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.addControl(new GOverviewMapControl(new GSize(200,150)));
	map.centerAndZoom(new GPoint(135.71815073490143, 34.671485081161066), 3);
	var point = new GPoint(135.71815073490143, 34.671485081161066);
	var marker = new GMarker(point);
	map.addOverlay(marker);
	var offset = new GSize(0, -20);
	map.openInfoWindowHtml(map.getCenterLatLng(), '<div class="g-map"><h4><a href="http://www.speziell.jp/" target="_top">Speziell</a></h4><img src="../images/logo_speziell.jpg" alt="" height="60" width="220" /><br />第二阪奈有料道路「壱分」ICから2分。<br />阪奈道路「富雄」ICから5分。</div>', offset);
}
