var map;
function initialize() {
  var map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(47.68018294648414, 7.0477294921875), 9);
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
   map.enableScrollWheelZoom();
  var defaultIcon = new GIcon(G_DEFAULT_ICON);
          defaultIcon.image = "http://chart.apis.google.com/chart?cht=mm&chs=20x34&chco=BD9CD9FF,7F56A1FF,7F56A1FF&ext=.png";
          defaultIcon.iconAnchor = new GPoint(15, 32);
          defaultIcon.infoWindowAnchor = new GPoint(8,0);
          defaultMarker = new GMarker( new GLatLng(47.5158038,6.8745648), defaultIcon);
          GEvent.addListener(defaultMarker, 'click', function(){ 
            defaultMarker.openInfoWindowHtml(
              "<p align=\"center\"><img src=\"images/logo-map.png\" alt=\"P&ocirc;le V&eacute;hicule du Futur\" class=\"noborder\"><br /><br /><strong>Si&eacute;ge social</strong><br />P&ocirc;le V&eacute;hicule du Futur<br />Centre d&rsquo;affaires Technoland<br />15 rue Armand Japy<br />F-25461 ETUPES Cedex</p>"
            ); 
          });
          map.addOverlay(defaultMarker);
		  
	var Icon1 = new GIcon(G_DEFAULT_ICON);
          Icon1.image = "http://chart.apis.google.com/chart?cht=mm&chs=20x34&chco=BD9CD9FF,7F56A1FF,7F56A1FF&ext=.png";
          Icon1.iconAnchor = new GPoint(15, 32);
          Icon1.infoWindowAnchor = new GPoint(8,0);
          marker1 = new GMarker( new GLatLng(47.7454415,7.2976094), Icon1);
          GEvent.addListener(marker1, 'click', function(){ 
            marker1.openInfoWindowHtml(
              "<p align=\"center\"><img src=\"images/logo-map.png\" alt=\"P&ocirc;le V&eacute;hicule du Futur\" class=\"noborder\"><br /><br /><strong>Secr&eacute;tariat G&eacute;n&eacute;ral</strong><br />P&ocirc;le V&eacute;hicule du Futur<br />Technopole de Mulhouse<br />BP 2118<br />40 rue Marc Seguin<br />F-68060 MULHOUSE Cedex</p>"
            ); 
          });
          map.addOverlay(marker1);	  
}

