function initialize() {
  var latlng_side = new google.maps.LatLng(35.906,139.619558);
  var opts_side = {
    zoom: 14,
    center: latlng_side,
    mapTypeId: google.maps.MapTypeId.ROADMAP,
		disableDefaultUI: true,
		navigationControl: true
  };
  var map_side = new google.maps.Map(document.getElementById("gmap-side"), opts_side);

  var m_latlng_side = new google.maps.LatLng(35.906,139.619558);
  var marker_side = new google.maps.Marker({
    position: m_latlng_side,
    map: map_side,
	title:"日本公認会計士協会 埼玉県会"
  });
}
google.maps.event.addDomListener(window, 'load', initialize);
