function initialize() {
    var myLatlng = new google.maps.LatLng(46.533927,12.147285);
    var myOptions = {
      zoom: 14,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.HYBRID
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);


	



	var contentString = '<div id="content" style="">'+
	    '<div id="siteNotice">'+
	    '</div>'+
	    '<h2 id="firstHeading" class="firstHeading">HOTEL CRISTALLO</h2>'+
	    '<div id="bodyContent">'+
	    '<p><b></b>' +
	    '<h4>Via Menardi 42,<br /> 32043 Cortina d\'Ampezzo (BL)</h4></p>'+
	    '</div>'+
	    '</div>';

    
	
	
    var infowindow = new google.maps.InfoWindow({
        content: contentString,
		maxWidth: 300,
		maxHeight: 300		

    });



	var hotelIcon = "http://andrea.hotel.cristallo.qwentes.lan/themes/hotel_cristallo/images/hotelIcon.png";
		
    var marker = new google.maps.Marker({
		icon: hotelIcon,
		position: myLatlng,
        map: map,
        title: 'HOTEL CRISTALLO'
    });
	infowindow.open(map,marker);
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

$(function(){
	initialize();
});
