
/*---------------------------------------------------------------------
	
	1.Google Analytics （アクセス解析）
	2.Google map （地図を表示）

---------------------------------------------------------------------*/ 


/*	1.Google Analytics （アクセス解析）
---------------------------------------------------------------------*/ 
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-24094039-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
  

/*	1.Google Analytics （アクセス解析）
---------------------------------------------------------------------*/

    window.onload = initialize;
    function initialize() {
    var myOptions = {
      zoom: 19,
      center: new google.maps.LatLng(34.6724623, 135.5065792),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    var marker = new google.maps.Marker({
      position: new google.maps.LatLng(34.6724623, 135.5065792),
      map: map, 
      title: '株式会社サムライエンタープライズ'
    });
	var infowindow = new google.maps.InfoWindow({
      content: '株式会社サムライエンタープライズ<br />〒542-0082 大阪市中央区島之内1-22-22　第一住建ビル10F<br />営業時間:10:00～20:00<br />TEL:06-6125-5454',
      size: new google.maps.Size(100, 50)
    });
      google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
    }
