function menuOver( td ) {
	td.className = "over";
}

function menuOut( td ) {
	td.className = "normal";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

// ------------------------------------------------------------------- //
// ------------------------- Google Maps ----------------------------- //
// ------------------------------------------------------------------- //
var map = null;
var centro = null;
var marker = null;

function inizializza( ) {
	if (GBrowserIsCompatible()) {
		centro = new GLatLng(45.434611, 10.996593);
		map = new GMap2(document.getElementById("googleMap"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(centro, 15, G_HYBRID_MAP);

		marker = new GMarker(centro);
		GEvent.addListener(marker, "click", apriInfoMarker);
	
		map.addOverlay(marker);
	
		apriInfoMarker();
	}
}

function apriInfoMarker() {
	htmlInfo		=	"<div style='font-family: Arial; font-size: 11px;'>";
	htmlInfo		+=	"<strong>Hotel De' Capuleti</strong><br>";
	htmlInfo		+=	"Via del Pontiere, 26 - 37122 Verona (VR)<br>";
	htmlInfo		+=	"Tel. +39 045 8000154 - Fax 39 045 8032970<br>";
	htmlInfo		+=	"<br><a href='mailto:info@hotelcapuleti.it'>info@hotelcapuleti.it</a>";
	htmlInfo		+=	"</div>";

	marker.openInfoWindowHtml(htmlInfo);
}