function initialize() {
	var div_map_one = document.getElementById("map_canvas");
	if (div_map_one && GBrowserIsCompatible()) {
		var map_one = new GMap2(div_map_one);
		map_one.addControl(new GLargeMapControl());
		//map_one.addControl(new GOverviewMapControl());
		map_one.addControl(new GMapTypeControl());
		map_one.setCenter(new GLatLng(41.553996, 14.664811), 15);
		var html_one = "<div style=\"width:300px;\"><img style=\"float:right;width:120px;padding-right:15px;\" src=\"" + GFX_PATH + "common/gmap_logo.jpg\" title=\"" + SITE_NAME + " presso Universit&agrave; degli Studi del Molise, Via De Sanctis - 86100 Campobasso\" alt=\"\" /><span class=\"testo_selezionato\">" + SITE_NAME + "</span><span style=\"font-size:11px;color:#000\"> <em>presso</em><br />Universit&agrave; degli Studi del Molise</span><br /><br />Via De Sanctis<br />86100 Campobasso<br /><br /><span class=\"testo_selezionato\">Fax: </span>0874.318149<div style=\"clear:both;\"></div></div>";

		/* LA VIGNETTA SI APRE AUTOMATICAMENTE */
		map_one.openInfoWindowHtml(map_one.getCenter(), html_one); 
		var point_location_one = new GMarker(map_one.getCenter());
		
		/* LA VIGNETTA CLICCANDO SUL PALLINO */
		GEvent.addListener(point_location_one, "click", function() {
			html = html_one;																
			point_location_one.openInfoWindowHtml(html);
		});

		map_one.addOverlay(point_location_one);
	}

}
