
google.maps.event.addDomListener(window, 'load', function() {
	var map = new google.maps.Map(document.getElementById('map'), {
		'zoom': 15,
		'center': new google.maps.LatLng(35.6886244,139.713543),
		'mapTypeId': google.maps.MapTypeId.ROADMAP,
		'mapTypeControlOptions': { style: google.maps.MapTypeControlStyle.DROPDOWN_MENU },
		'navigationControlOptions': { style: google.maps.NavigationControlStyle.SMALL },
		'scaleControl': false
	});
	var marker = new google.maps.Marker({
		'position': new google.maps.LatLng(35.6886244,139.713543),
		'map': map,
		'title': '株式会社サンドボックス'
	});
	var infowindow = new google.maps.InfoWindow({
		'content': '<h4>株式会社サンドボックス</h4><p>〒160-0022<br />東京都新宿区新宿 1-11-12 岩下ビル 2F<br />TEL : 03-3341-1600<br />FAX : 03-3341-1609</p>'
	});
	google.maps.event.addListener(marker,'click',function(){
		infowindow.open(map,marker);
	});
	infowindow.open(map,marker);
});