
//<![CDATA[
		   
function load() {
	if (GBrowserIsCompatible()) {
		var baseIcon = new GIcon();
		baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
		baseIcon.iconSize = new GSize(20, 34);
		baseIcon.shadowSize = new GSize(37, 34);
		baseIcon.iconAnchor = new GPoint(9, 34);
		baseIcon.infoWindowAnchor = new GPoint(9, 2);
		baseIcon.infoShadowAnchor = new GPoint(18, 25);
	
		function CreaPunto(coord, testo, lettera) {
	
			var icon = new GIcon(baseIcon);
			icon.image = "http://www.google.com/mapfiles/marker" + lettera + ".png";
	
			var punto = new GMarker(coord,icon);
			GEvent.addListener(punto, "click", function() { punto.openInfoWindowHtml(testo);});
			return punto;
		}
		
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(44.306038,11.894417), 11);
		
		var coord = new GLatLng(44.3128, 11.8935);
		map.addOverlay(CreaPunto(coord, "Sede Centrale:<br />Via Proventa, 274 - 48018 Faenza (RA)",'A'));

		
	}
}

$(document).ready(load);

//]]>

