
$(document).ready(function(){        
var options = {  
  mapTypeId: google.maps.MapTypeId.HYBRID, 
  streetViewControl: false, 
  scrollwheel: false
};    
var map = new google.maps.Map(document.getElementById('google-map'), options);  
var infoWindow = new google.maps.InfoWindow();
var markerBounds = new google.maps.LatLngBounds();
var markerArray = [];
function makeMarker(options){
  var pushPin = new google.maps.Marker({map:map});
  pushPin.setOptions(options);
  google.maps.event.addListener(pushPin, "click", function(){
    infoWindow.setOptions(options);
    infoWindow.open(map, pushPin);
  });
  markerBounds.extend(options.position);
  markerArray.push(pushPin);
  return pushPin;
}
google.maps.event.addListener(map, "click", function(){
  infoWindow.close();
});
makeMarker({
  position: new google.maps.LatLng(46.4762, 11.7422),
  content: '<div style="height:60px"><p><strong>Euroski Center 1</strong><br /><small>Campitello di Fassa</small></p></div>'
});  
makeMarker({
  position: new google.maps.LatLng(46.4768, 11.7417),
  content: '<div style="height:60px"><p><strong>Euroski Center 2</strong><br /><small>Campitello di Fassa</small></p></div>'
}); 
makeMarker({
  position: new google.maps.LatLng(46.4962, 11.7512),
  content: '<div style="height:60px"><p><strong>Euroski Center</strong><br /><small>Col Rodella</small></p></div>'
}); 
makeMarker({
  position: new google.maps.LatLng(46.4642, 11.7163),
  content: '<div style="height:60px"><p><strong>Euroski Center</strong><br /><small>Campestrin</small></p></div>'
}); 
map.fitBounds(markerBounds);
google.maps.event.addListener(map, 'zoom_changed', function() {
  zoomChangeBoundsListener = google.maps.event.addListener(map, 'bounds_changed', function(event) {
    if (this.getZoom() > 16)
    this.setZoom(16);
    google.maps.event.removeListener(zoomChangeBoundsListener);
  });
}); 
});
