function focusColor(i){
	i.style.borderColor='#7F9DB9';
	i.style.backgroundColor='#FFFFFF';
}
function blurColor(i){
	i.style.borderColor='#CCCCCC';
	i.style.backgroundColor='#F3F3F3';
}


//<![CDATA[

function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
　　　　map.addControl(new GLargeMapControl());
　　　　map.addControl(new GScaleControl());
　　　  map.addControl(new GMapTypeControl());
　　　　map.addControl(new GOverviewMapControl());
        map.setCenter(new GLatLng(35.684392, 139.742632), 16);

// Create a base icon for all of our markers that specifies the
// shadow, icon dimensions, etc.
var baseIcon = new GIcon();
baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
baseIcon.iconSize = new GSize(20, 34);
baseIcon.shadowSize = new GSize(37, 34);
baseIcon.iconAnchor = new GPoint(9, 34);
baseIcon.infoWindowAnchor = new GPoint(9, 2);
baseIcon.infoShadowAnchor = new GPoint(18, 25);

// Creates a marker whose info window displays the letter corresponding
// to the given index.
function createMarker(point, index) {

  	// Create a lettered icon for this point using our icon class
  	var letter = String.fromCharCode("A".charCodeAt(0) + index);
  	var icon = new GIcon(baseIcon);
  	icon.image = "http://www.google.com/mapfiles/marker" + letter + ".png";
  	var marker = new GMarker(point, icon);

  	GEvent.addListener(marker, "click", function() {
    	marker.openInfoWindowHtml("AMS ジャパン(株)麹町オフィス");
  	});
  	return marker;
}
// Add marker to the map
  	 var point = new GLatLng(35.684392, 139.742632);
  	 map.addOverlay(createMarker(point, 0));
  	 map.openInfoWindow(map.getCenter(),
         document.createTextNode("AMS ジャパン(株)麹町オフィス"));
      }
    }
//]]>
