(function() {
        window.onload = function(){
        	// Creating a LatLng object containing the coordinate for the center of the map  
          var latlng = new google.maps.LatLng(45.46368,9.18817);  
          // Creating an object literal containing the properties we want to pass to the map  
          var options = {  
          	zoom:12,
          	center: latlng,
          	mapTypeId: google.maps.MapTypeId.ROADMAP
          };  
		  
          // Calling the constructor, thereby initializing the map  
          var map = new google.maps.Map(document.getElementById('map'), options);  
		  
          					
          var marker = new google.maps.Marker({
            position: new google.maps.LatLng(45.45656,9.17320), 
            map: map,
            title: 'P.za Cantore, 4 Milano Tel.: 0258118840',
            clickable: true,
            icon: '/images/pin.png'
          });
			

		  //Padova
		  var markerPD = new google.maps.Marker({
            position: new google.maps.LatLng(45.43735,9.19877), 
            map: map,
            title: 'Via Gallura, 11 Milano Tel.: 0255231289',
            clickable: true,
            icon: '/images/pin.png'
			
          });
		  
		  //Firenze
		  var markerFI = new google.maps.Marker({
            position: new google.maps.LatLng(45.46910,9.15542), 
            map: map,
            title: 'Via Buonarroti, 16 Milano Tel.: 02462066',
            clickable: true,
            icon: '/images/pin.png'
          });
		  //Roma
		  var markerRM = new google.maps.Marker({
            position: new google.maps.LatLng(45.49535,9.18575), 
            map: map,
            title: 'Via Carlo Farini, 78 Milano Tel.: 0269016126',
            clickable: true,
            icon: '/images/pin.png'
          });
		  //Napoli
		  var markerNA = new google.maps.Marker({
            position: new google.maps.LatLng(45.45764,9.20632), 
            map: map,
            title: 'Via Bergamo, 1 Milano Tel.: 025464323',
            clickable: true,
            icon: '/images/pin.png'
          });
		  //Cagliari
		  var markerCA = new google.maps.Marker({
            position: new google.maps.LatLng(45.43570,9.12117), 
            map: map,
            title: 'Via Privata Mulino, 1 Buccinasco Tel.: 0245119033',
            clickable: true,
            icon: '/images/pin.png'
          });
		  
		  
			
		  
      	}
      })
	  
	  ();
	 


