var initialize = function() {
 
	var latlng = new google.maps.LatLng(45.585991,10.717378);
	
	var options = {
  		zoom: 13,
  		center: latlng,
  		mapTypeId: google.maps.MapTypeId.SATELLITE
	};	
 
	var map = new google.maps.Map(document.getElementById('map'), options);
	
	var hot01 = new google.maps.LatLng(45.575991,10.707378);
	var hot01 = new google.maps.Marker(
		{
  			position: hot01,
  			map: map,
  			icon: 'http://google-maps-icons.googlecode.com/files/smallcity.png',
			flat: true,
			title:"Centro storico di Garda"
		}
	);
	
	var hot02 = new google.maps.LatLng(45.576391,10.747064);
	var hot02 = new google.maps.Marker(
		{
  			position: hot02,
  			map: map,
  			icon: 'http://google-maps-icons.googlecode.com/files/red01.png',
			flat: true,
			title:"Hotel Boffenigo"
		}
	);
	
	var hot03 = new google.maps.LatLng(45.592164,10.719167);
	var hot03 = new google.maps.Marker(
		{
  			position: hot03,
  			map: map,
  			icon: 'http://google-maps-icons.googlecode.com/files/red02.png',
			flat: true,
			title:"Residence Bran & Denise"
		}
	);
	
	
}
 
 
window.onload = initialize;
