function initialize_maps() {
	var myLatlng = new google.maps.LatLng(45.539705,12.071212);
	var myOptions = {
		zoom: 16,
		center: myLatlng,
		mapTypeId: google.maps.MapTypeId.HYBRID,
		mapTypeControl: true,
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
	}
	var contentString = '<div class="mapinfo"><h2>Piccoli S.R.L.</h2>'+
		'<p>Via A. Einstein 3, Noale (TV)<br />'+
		'<br />'+
		'<a href="http://maps.google.com/maps/place?q=piccoli+srl&hl=it&cid=6976043772534875631">Ottieni indicazioni</a></p></div>';
	
	var infowindow = new google.maps.InfoWindow({
		content: contentString
	});
	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	var marker = new google.maps.Marker({
		position: myLatlng, 
		map: map, 
		title:"Piccoli S.R.L."
	});
	//infowindow.open(map,marker);
}
