 (function() {
        window.onload = function(){
        	// Creating a LatLng object containing the coordinate for the center of the map  
          var latlng = new google.maps.LatLng(48.867461,2.302054);  
		 	  
		  
          // Creating an object literal containing the properties we want to pass to the map  
          var options = {  
          	zoom: 16,
          	center: latlng,
          	mapTypeId: google.maps.MapTypeId.ROADMAP
          };  
          // Calling the constructor, thereby initializing the map  
          var map = new google.maps.Map(document.getElementById('map_canvas'), options);
		  
		  var contentString = '<div id="content">'+
					'<div id="siteNotice">'+
					'</div>'+
					'<h2 id="firstHeading" class="firstHeading">LA Fermette Marbeuf</h2>'+
					'<div id="bodyContent">'+
					'<p>5 rue Marbeuf<br/>75008 PARIS<br/>Tèl : 01 53 23 08 00 </p>'+
					'</div>'+
					'</div>';
				var infowindow = new google.maps.InfoWindow({
					content: contentString
				});  
          					
          var marker = new google.maps.Marker({
            position: latlng, 
            map: map,
            title: 'LA Fermette Marbeuf'
          });
		  
		  google.maps.event.addListener(marker, 'click', function() {
					infowindow.open(map, marker);
				});
		
		if($('#map_canvas2').html()!=null){
				// GRAND FORMAT
			var options = {  
				zoom: 16,
				center: latlng,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			  };  
			  // Calling the constructor, thereby initializing the map  
			  var map2 = new google.maps.Map(document.getElementById('map_canvas2'), options);
			  
			  	var infowindow2 = new google.maps.InfoWindow({
						content: contentString
					});  
								
			  var marker2 = new google.maps.Marker({
				position: latlng, 
				map: map2,
				title: 'LA Fermette Marbeuf'
			  });
			  
			  google.maps.event.addListener(marker2, 'click', function() {
						infowindow2.open(map2, marker2);
					});	
			}
		 
      	}
      })();
