// -----------------------------------------------------------------------------------
// Google Maps
google.load("maps", "2.x");

var map = null;
var geocoder = null;
var bounds = null;
var sidebar = null;

google.setOnLoadCallback(initialize);


// -----------------------------------------------------------------------------------
// Inizializzo la mappa
function initialize() {
	if (GBrowserIsCompatible())
	{
		if(document.getElementById("gmap") != null)
		{
			map = new google.maps.Map2(document.getElementById("gmap"));
			var mapControl = new GMapTypeControl();
			map.addControl(mapControl);
			map.addControl(new GLargeMapControl());
			map.setCenter(new GLatLng(45.720563, 13.658752), 9); 
			geocoder = new GClientGeocoder();
			if (typeof prepareMap=="function")
			{
				prepareMap();
			}
			if(typeof init_gmaps=="function")
			{
				init_gmaps();
			}
		}

	}
}
