function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        var center = new GLatLng(43.818721302793385, 7.759212255477905);
        map.setCenter(center, 14);
		//map.enableGoogleBar();
        //map.addControl(new GMapTypeControl()); // Aggiunge 3 pulsanti mappa, satellite e ibrida
        map.enableDoubleClickZoom();
        map.enableScrollWheelZoom();
        map.setMapType(G_HYBRID_MAP); //
		map.addControl(new GSmallMapControl()); //Agginge il controllo con frecce e bottoni zoom
		//map.addControl(new GOverviewMapControl()); //Aggiunge riquadro con vista lontana a scomparsa
        //map.addControl(new GLargeMapControl()); // Aggiunge il controllo zoom e spostamento
        //map.addControl(new GMapTypeControl());


        var rampilluIcon = new GIcon(G_DEFAULT_ICON);
				rampilluIcon.image = "/site-media/images/cadurampillu.png";
				rampilluIcon.shadow = "/site-media/images/cadurampillu_s.png";
				rampilluIcon.iconSize = new GSize(50, 50);
				rampilluIcon.shadowSize = new GSize(50, 50);
				rampilluIcon.iconAnchor = new GPoint(20, 50);

        //rampilluIcon.image = "http://www.biosanremo.it/images/Map/rampillu1.png";
				
				
		// Set up our GMarkerOptions object
		markerOptions = { icon:rampilluIcon };
        map.addOverlay(new GMarker(center, markerOptions));
    }
}

