

function initialize() {
/*var geocoder = new GClientGeocoder();
// l'indirizzo è proprio un testo, potrebbe essere anche solo una città
var address = 'via decorati al valor civile 57/A, padova italy';
geocoder.getLatLng( address,
    function(point) {
        if (!point) {
            alert(address + ' non trovato');
        } else {
            alert( 'Latitudine = ' + point.lat() + ' Longitudine = ' + point.lng() );
        }
    }
);*/
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(45.385152,11.851526), 13);
        map.setUIToDefault();
        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        map.setZoom(15);
        var pallinoIcon = new GIcon(G_DEFAULT_ICON);
  		pallinoIcon.image = "http://www.pallino.it/fileadmin/templates/images/pallino.png";
		// Set up our GMarkerOptions object
		markerOptions = { icon:pallinoIcon };
        var point = new GLatLng(45.385152,11.851526);
  		var marker = new GMarker(point,markerOptions);
  		GEvent.addListener(marker, "click", function() {
    		marker.openInfoWindowHtml('<b>Pallino & Co. Srl</b><br /><br />Via Decorati al Valor Civile 57/A<br />35142 Padova<br />Tel. 0498805535 - Fax 0498800354');
  		});
  		map.addOverlay(marker); 
        
      }
    }
    
    
   $(document).ready(function(){
  // alert('pippo');
     initialize();
   }); 
