function initialize() {
  
 // GLOBAL SETTINGS
 
  var latlng = new google.maps.LatLng(50.639594,3.059951);
  var myOptions = {
    zoom:10,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  var map = new google.maps.Map(document.getElementById("map_societe_home"), myOptions);     
  var MyInfoWindow = new google.maps.InfoWindow();
 
 // BAILLEUL SETTINGS
 
 var PosBailleul = new google.maps.LatLng(50.741344,2.73345);
 
 var BailleulContent = '<div class="content-map">'+
     '<div id="siteNotice">'+
     '</div>'+
     '<img src="/images/visuels/index/gmaps/visuel_bailleul_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
     '<h2 class="firstHeading">La Verte Rue</h2>'+
     '<div id="bodyContent">'+
     '<p>à Bailleul (59) <br/>3 immeubles de bureaux'+
     '<p><a href="/bureaux_verte_rue_bailleul.html">Découvrir ce programme</a></p>'+
     '</div>'+
     '</div>';
 
 var imageBailleul = '/images/pictos/google_maps/map_bureaux_bailleul.png';
 var BailleulMarker = new google.maps.Marker({
     position: PosBailleul,
     map: map,
     icon:imageBailleul,
     title:"La Verte Rue"
 });
 
 google.maps.event.addListener(BailleulMarker, 'click', function() {
       MyInfoWindow.setContent(BailleulContent);
       MyInfoWindow.open(map, BailleulMarker);
 });
 
 // CAMBRAI SETTINGS   
 
 var PosCambrai = new google.maps.LatLng(50.173575,3.213536);    
 
 var CambraiContent = '<div class="content-map">'+
     '<div id="siteNotice">'+
     '</div>'+
     '<img src="/images/visuels/index/gmaps/visuel_cambrai_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
     '<h2 class="firstHeading">Zone Industrielle de Cantimpré</h2>'+
     '<div id="bodyContent">'+
     '<p>à Cambrai (59) <br/>Zone Industrielle de Cantimpré'+
     '<p><a href="/bureaux_zone_industrielle_cantimpre_cambrai.html">Découvrir ce programme</a></p>'+
     '</div>'+
     '</div>';

 var imageCambrai = '/images/pictos/google_maps/map_bureaux_cambrai.png'; 
 var CambraiMarker = new google.maps.Marker({
     position: PosCambrai,
     map: map,
     icon: imageCambrai,
     title:"Zone Industrielle de Cantimpré"    
 });

 google.maps.event.addListener(CambraiMarker, 'click', function() {
       MyInfoWindow.setContent(CambraiContent);
       MyInfoWindow.open(map, CambraiMarker);
 });
  
  // APPART PHALEMPIN SETTINGS
  
  var PosPhalempin = new google.maps.LatLng(50.518738,3.013736);

  var PhalempinContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_phalempin_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Les Terrasses de la Corderie</h2>'+
      '<div id="bodyContent">'+
      '<p>à Phalempin (59) <br/>80 appartements du T1 au T4'+
      '<p><a href="/appartements_la_corderie_phalempin.html">Découvrir les appartements de ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imagePhalempin = '/images/pictos/google_maps/map_appart_phalempin_do.png';

  var PhalempinMarker = new google.maps.Marker({
    position: PosPhalempin,
    map: map,
    icon: imagePhalempin
  }); 
  
  google.maps.event.addListener(PhalempinMarker, 'click', function() {
        MyInfoWindow.setContent(PhalempinContent);
        MyInfoWindow.open(map, PhalempinMarker);
  });
  
  
  // APPART NEUVILLE SETTINGS

  var PosNeuville = new google.maps.LatLng(50.749277,3.154858);

  var NeuvilleContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_neuville_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Le Clos de la Cense</h2>'+
      '<div id="bodyContent">'+
      '<p>à Neuville-en-Ferrain (59) <br/>51 appartements du studio au T4'+
      '<p><a href="/appartements_clos_de_la_cense_neuville_en_ferrain.html">Découvrir les appartements de ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imageNeuville = '/images/pictos/google_maps/map_maison_neuville.png';

  var NeuvilleMarker = new google.maps.Marker({
    position: PosNeuville,
    map: map,
    icon: imageNeuville
  }); 
  
  google.maps.event.addListener(NeuvilleMarker, 'click', function() {
        MyInfoWindow.setContent(NeuvilleContent);
        MyInfoWindow.open(map, NeuvilleMarker);
  });
  
  // MAISON COUTICHES

  var PosCoutiches = new google.maps.LatLng(50.452865,3.201528);

  var CoutichesContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_coutiches_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Le Clos des Prés</h2>'+
      '<div id="bodyContent">'+
      '<p>à Coutiches (59) <br/>14 parcelles'+
      '<p><a href="/terrains_clos_des_pres_coutiches.html">Découvrir les parcelles de ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imageCoutiches = '/images/pictos/google_maps/map_maison_coutiches_do.png';

  var CoutichesMarker = new google.maps.Marker({
    position: PosCoutiches,
    map: map,
    icon: imageCoutiches
  }); 
  
  google.maps.event.addListener(CoutichesMarker, 'click', function() {
        MyInfoWindow.setContent(CoutichesContent);
        MyInfoWindow.open(map, CoutichesMarker);
  });

  // MAISON AUBERS SETTINGS
  
  var PosAubers = new google.maps.LatLng(50.555325,2.955322);

  var AubersContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_aubers_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Le Domaine de l\'Eurie</h2>'+
      '<div id="bodyContent">'+
      '<p>à Aubers (59) <br/>Lots libres et non libres de constructeur'+ 
      '<p><a href="/terrains_domaine_de_l_eurie_aubers.html">Découvrir les parcelles de ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imageAubers = '/images/pictos/google_maps/map_terrains_aubers.png';

  var AubersMarker = new google.maps.Marker({
    position: PosAubers,
    map: map,
    icon: imageAubers
  }); 
  
  google.maps.event.addListener(AubersMarker, 'click', function() {
        MyInfoWindow.setContent(AubersContent);
        MyInfoWindow.open(map, AubersMarker);
  });
  
  // LESQUIN SETTINGS
  
  var PosLesquin = new google.maps.LatLng(50.588415,3.111512);
  
  var LesquinContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_lesquin_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Le Quartier des Arts</h2>'+
      '<div id="bodyContent">'+
      '<p>à Lesquin (59) <br/>Lots libres de constructeur'+
      '<p><a href="/terrains_quartier_des_arts_lesquin.html">Découvrir les parcelles de ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imageLesquin = '/images/pictos/google_maps/map_maison_lesquin_do.png';

  var LesquinMarker = new google.maps.Marker({
    position: PosLesquin,
    map: map,
    icon: imageLesquin
  }); 
  
  google.maps.event.addListener(LesquinMarker, 'click', function() {
        MyInfoWindow.setContent(LesquinContent);
        MyInfoWindow.open(map, LesquinMarker);
  });
  
  // PERENCHIES SETTINGS
  
  var PosPerenchies = new google.maps.LatLng(50.665671,2.969551);

  var PerenchiesContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_perenchies_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">Résidence Péricentre</h2>'+
      '<div id="bodyContent">'+
      '<p>à Pérenchies (59)'+
      '<p><a href="/appartements_residence_pericentre_perenchies.html">Découvrir ce programme</a></p>'+
      '</div>'+
      '</div>';

  var imagePerenchies = '/images/pictos/google_maps/map_appart_perenchies.png';

  var PerenchiesMarker = new google.maps.Marker({
    position: PosPerenchies,
    map: map,
    icon: imagePerenchies
  }); 
  
  google.maps.event.addListener(PerenchiesMarker, 'click', function() {
        MyInfoWindow.setContent(PerenchiesContent);
        MyInfoWindow.open(map, PerenchiesMarker);
  });
  
  // APPART HAZEBROUCK SETTINGS  
  
  var PosAppartHazebrouck = new google.maps.LatLng(50.722839,2.542101);
  
  var AppHazContent = '<div class="content-map">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<img src="/images/visuels/index/gmaps/visuel_hazebrouck_min.jpg" width="210" height="117" alt="La Verte Rue à Bailleul">'+
      '<h2 class="firstHeading">La Clef de Sol</h2>'+
      '<div id="bodyContent">'+
      '<p>à Hazebrouck (59)'+
      '<p><a href="/appartements_clef_de_sol_hazebrouck.html">Découvrir ce programme</a></p>'+
      '</div>'+
      '</div>';
      
  var imageAppHaz = '/images/pictos/google_maps/map_appart_hazebrouck.png';

  var AppHazMarker = new google.maps.Marker({
     position: PosAppartHazebrouck,
     map: map,
     icon: imageAppHaz,
     title:"La Clef de Sol" 
   });
  
  google.maps.event.addListener(AppHazMarker, 'click', function() {
        MyInfoWindow.setContent(AppHazContent);
        MyInfoWindow.open(map, AppHazMarker);
  });
 
}
