function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		 map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(45.554328,11.547189), 13);
		

// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.547189,45.554328);
		  var html = "<img src=http://www.associazionivicentine.com/camminando/images/logo_small_q.gif>";
        var marker = createMarker(point, html);
        map.addOverlay(marker);


// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.520581,45.545297);
		  var html = "<img src=http://www.associazionivicentine.com/camminando/images/logo_small_f.gif>";
        var marker = createMarker(point, html);
        map.addOverlay(marker);



// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.541578,45.546184);
		  var html = "Piazza Castello";
        var marker = createMarker(point, html);
        map.addOverlay(marker);


// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.544067,45.546244);
		  var html = "Piazza Duomo";
        var marker = createMarker(point, html);
        map.addOverlay(marker);


	// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.544925,45.546454);
		  var html = "Piazza delle Poste";
        var marker = createMarker(point, html);
        map.addOverlay(marker);



      }
    }
