// JavaScript Document

	//<![CDATA[
		google.maps.event.addDomListener(window, 'load', function() {

			var mapdiv = document.getElementById('accessmap1');
	
			var myOptions = {
					zoom: 16,
					center: new google.maps.LatLng(35.3425144,139.48875),
					mapTypeId: google.maps.MapTypeId.ROADMAP
				};
				
				var accessmap1 = new google.maps.Map(mapdiv, myOptions);
				
				var marker = new google.maps.Marker({
				position: new google.maps.LatLng(35.3425144,139.48875),
				map: accessmap1, 
				title: '■本社/湘南オフィス'
				


			});


				var content = '<strong>■本社/湘南オフィス</strong>';
				
				var infowindow = new google.maps.InfoWindow({
					content: content ,
					size: new google.maps.Size(20,20)
				});

				google.maps.event.addListener(marker, 'click', function() {
					infowindow.open(accessmap1,marker);
				});
		});

		google.maps.event.addDomListener(window, 'load', function() {

			var mapdiv = document.getElementById('accessmap2');
	
			var myOptions = {
					zoom: 16,
					center: new google.maps.LatLng(35.672124, 139.770011),
					mapTypeId: google.maps.MapTypeId.ROADMAP
				};
				
				var accessmap2 = new google.maps.Map(mapdiv, myOptions);
				var marker2 = new google.maps.Marker({
				position: new google.maps.LatLng(35.672124, 139.770011),
				map: accessmap2, 
				title: '■東京オフィス'
	

			});


				var content = '<strong>■東京オフィス</strong>';
				
				var infowindow = new google.maps.InfoWindow({
					content: content ,
					size: new google.maps.Size(20,20)
				});

				google.maps.event.addListener(marker2, 'click', function() {
					infowindow.open(accessmap2,marker2);
				});
		});

//]]>
