function load() {
	if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map01"));
	map.setCenter(new GLatLng(43.1895712,141.2548899), 12);
	map.addControl(new GLargeMapControl());


	map.enableDoubleClickZoom();
	map.enableContinuousZoom();

	var ofkIcon = new GIcon();
	ofkIcon.image = "../shared/img/ico_logo.gif";
	ofkIcon.iconSize = new GSize(39,39);
	ofkIcon.iconAnchor = new GPoint(0,35);
	ofkIcon.infoWindowAnchor = new GPoint(18,11);

	point = new GLatLng(43.1695712,141.2548899);
	marker1 = new GMarker(point,ofkIcon);
	GEvent.addListener(marker1, "click", function() {
	marker1.openInfoWindowHtml('<div><p class="gmap_center"><img src="../shared/img/h1_title.gif" /><br /><br /><span class="gmap_bold">小樽工場</span><p>〒061-3271<br />北海道小樽市銭函5-50-8</p></div>');});
	map.addOverlay(marker1);
	GEvent.trigger(marker1,"click");

	}
}

