function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		//map.addControl(new GSmallMapControl());
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
	
		//GEvent.addListener(map, "moveend", function() {
		//  var center = map.getCenter();
		//  document.getElementById("message").innerHTML = center.toString();
		//});
	
		map.setCenter(new GLatLng(44.51932918224619, 10.741952061653137), 5);
		
		// Create our "tiny" marker icon
	
		var icon = new GIcon();
		icon.image = "http://www.granitech.it/common/img/logo-granitech-map.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(100, 24);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(50, 12);
		icon.infoWindowAnchor = new GPoint(50, 12);
		
		var infoTabs = [new GInfoWindowTab("Tab #1", "<b>GRANITECH</b><br/>Via Guido Reni, 2E<br />42014 Castellarano (Reggio Emilia), Italy<br/>Tel. +39 0536 819792 - Fax +39 0536 819794")];
		
		// Place a marker in the center of the map and open the info window automatically
		var marker = new GMarker(map.getCenter(), icon);
		GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowTabsHtml(infoTabs);
		});
		map.addOverlay(marker);
		marker.openInfoWindowTabsHtml(infoTabs);
	
	}
}
