function initialize() {
    var myLatlng = new google.maps.LatLng(45.465549,9.208088);
	var myLatlng_hotel = new google.maps.LatLng(45.446937,9.206822);
    var myOptions = {
      zoom: 12,
      center: myLatlng,
	  disableDefaultUI: true,
      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">Grand Visconti Palace</h2>'+
	    '<div id="bodyContent">'+
	    '<p><b></b>' +
	    '<h4>Viale Isonzo 14<br />20135 Milano - +39 02 540 341</h4></p>'+
	    '<center> <a style=\"color: rgb(154, 36, 45); font-size: 15px; margin-left: 10px; font-weight: bold;\" onclick=\"hhotelSearch(\'ITMIGVisconti\', \'\', \'\', \'\', \'\', \'\', \'&FSTBKNGTrackLink=\'); pageTracker._trackPageview(\'/Fastbooking/gmap_book\');\" href=\"javascript:;\">Book Now!</a></center>'+
		'</div>'+
	    '</div>';

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


		
    var marker = new google.maps.Marker({
		position: myLatlng_hotel,
        map: map,
        title: 'Grand Visconti Palace'
    });
	infowindow.open(map,marker);
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
}



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