
//<![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.474289,12.284464), 11);
		map.addControl(new GMapTypeControl());
		
		var coord = new GLatLng(44.474289,12.284464);
		map.addOverlay(CreaPunto(coord, "<strong>Bagno Taormina</strong><br />V.le delle Nazioni, Marina di Ravenna (RA)<br /><a href=\"http://maps.google.it/maps/ms?ie=UTF8&hl=it&msa=0&ll=44.474289,12.284464&spn=0.002725,0.006968&t=h&z=18&msid=117607980454266301397.0004855ee3b38fee689e0\" target=\"_blank\">Ottieni le indicazioni stradali</a>",'A'));

	}
}

$(document).ready(load);

//]]>



