function load() {

	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(44.60846532687836, 10.867034196853637), 15);
		
		// Create our "tiny" marker icon

		var icon = new GIcon();
		icon.image = "http://www.oralengineering.com/oe/images/icon_googlemap.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(30, 30);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);
		
		var infoTabs = [new GInfoWindowTab("Tab #1", "<b>Oral Engineering s.r.l.</b><br/>Via Decorati al Valor Militare, 40<br />41041 Baggiovara (Mo) - Italy<br/>Tel. +39.059.512121 - Fax +39.059.512074")];
		
		// 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);

	}
}
