/* 		Ristoranti		*/

/* 		I CIAMPA	*/


function ICiampaMap(){

    Shadowbox.open({
        player:     'html',
        content:    '',
        height:     400,
        width:      600,
        options:    {
            onFinish: function(item){
                if(GBrowserIsCompatible()){
                    var map = new GMap2(document.getElementById('shadowbox_content'));
                    map.setCenter(new GLatLng(43.5533579, 10.9123374), 17);

// Crea un nuovo marker nel punto specificato con una descrizione HTML associata
function createMarker(point, description) {
var marker = new GMarker(point);
GEvent.addListener(marker, "mouseover", function() {
   marker.openInfoWindowHtml(description);
});
return marker;
}
// Aggiungi il marker alla mappa
map.addOverlay(
createMarker(new GLatLng(43.5533579, 10.9123374), "Restaurant and Pizzeria<br>Corte Antica I' Ciampa<br>Montaione, Tuscany")
);

					map.addControl(new GSmallMapControl());
                    map.addControl(new GMapTypeControl());
                }
            }
        }
    });

};


