// JavaScript Document

  var geocoder;
  var map;
  
  var initMap = function() {
	/*geocoder = new google.maps.Geocoder();
    var address = "Paris II Place du Panthéon 75005 Paris";
    geocoder.geocode( { 'address': address}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {*/
    	//var latlng = results[0].geometry.location;
		var latlng = new google.maps.LatLng(48.846720677121745, 2.344963973999029);
    	myOptions = {
      		zoom: 14,
      		center: latlng,
      		mapTypeId: google.maps.MapTypeId.ROADMAP
    	}
		map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
        var marker = new google.maps.Marker({
            map: map, 
            position: latlng
        });
     /* } else {
        alert("Geocode was not successful for the following reason: " + status);
      }
    });*/
  }

