    //<![CDATA[
function mapping() {
				    
	var map = new GMap(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.centerAndZoom(new GPoint(135.762123, 35.003509), 3);

	// Creates a marker whose info window displays the given number
		function addMarker(map, lon, lat, html) {
		var point = new GPoint(lon, lat);
		var marker = new GMarker(point);

		// Show this marker's index in the info window when it is clicked
			GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(html);
		});
		map.addOverlay(marker);
	}

	addMarker(map, 135.762123, 35.003509, "<div class='InfoWin'><h3>四条烏丸ぺリオ・インプラントセンター<br /><img src=\"images/ban_SKPIC.jpg\" width=\"180\" height=\"50\" alt=\"四条烏丸ぺリオ・インプラントセンター\" /></h3></div>");
	//addMarker(map, 135.732366, 35.012758, "<div class='InfoWin'><h3>分院 宮本歯科医院</h3></div>");
	
}
//]]>

