function initialize() {
            var latlng = new google.maps.LatLng(37.347695, -107.697923);
            var myOptions = {
              zoom: 9,
              center: latlng,
			  directions: true,
			  mapTypeControl: true,
              mapTypeId: google.maps.MapTypeId.HYBRID
            };
            var map = new google.maps.Map(document.getElementById("map_canvas"),
                myOptions);
				
var contentString = ''+
    '<div style="height:74px;overflow:hidden;margin:0;padding:0;">'+
    '<h1>Colorado Trails Ranch</h1>'+
    '12161 County Road 240<br />' +
    'Durango, CO 81301<br />'+
    'United States<br />'+
    '+1 (877) 711-7843<br />'+
    '<a href="http://www.coloradotrails.com">coloradotrails.com</a><br />'+
    '</div>';

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

var marker = new google.maps.Marker({
    position: latlng,
    map: map,
    title:"Colorado Trails Ranch"
});

infowindow.open(map,marker);

google.maps.event.addListener(marker, 'click', function() {
  infowindow.open(map,marker);
});
    }
	


function initializec() {
            var latlng = new google.maps.LatLng(37.347695, -107.697923);
            var myOptions = {
              zoom: 9,
              center: latlng,
			  directions: true,
			  mapTypeControl: false,
              mapTypeId: google.maps.MapTypeId.HYBRID
            };
            var map = new google.maps.Map(document.getElementById("map_canvas_c"),
                myOptions);
				
var contentString = ''+
    '<div style="height:48px;overflow:hidden;margin:0;padding:0;">'+
    '<h1>Colorado Trails Ranch</h1>'+
    '12161 County Road 240<br />' +
    'Durango, CO 81301<br />'+
    'United States<br />'+
    '</div>';

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

var marker = new google.maps.Marker({
    position: latlng,
    map: map,
    title:"Colorado Trails Ranch"
});

infowindow.open(map,marker);

google.maps.event.addListener(marker, 'click', function() {
  infowindow.open(map,marker);
});
    }


function initmap_durango() {   
var map = new google.maps.Map(document.getElementById("map_durango"), {
  zoom: 7,
  mapTypeId: google.maps.MapTypeId.ROADMAP
});
 
var directionsRenderer = new google.maps.DirectionsRenderer();
directionsRenderer.setMap(map);    
directionsRenderer.setPanel(document.getElementById('dir_durango'));
 
var directionsService = new google.maps.DirectionsService();
var request = {
  origin: "Durango, Colorado", 
  destination: new google.maps.LatLng(37.347695, -107.697923),
  travelMode: google.maps.DirectionsTravelMode.DRIVING,
  unitSystem: google.maps.DirectionsUnitSystem.IMPERIAL
};
directionsService.route(request, function(response, status) {
  if (status == google.maps.DirectionsStatus.OK) {
    directionsRenderer.setDirections(response);
  } else {
    alert('Error: ' + status);
  }
});
}


function initmap_bayfield() {   
var map = new google.maps.Map(document.getElementById("map_bayfield"), {
  zoom: 7,
  mapTypeId: google.maps.MapTypeId.ROADMAP
});
 
var directionsRenderer = new google.maps.DirectionsRenderer();
directionsRenderer.setMap(map);    
directionsRenderer.setPanel(document.getElementById('dir_bayfield'));

var directionsService = new google.maps.DirectionsService();
var request = {
  origin: "Bayfield, Colorado", 
  destination: new google.maps.LatLng(37.347695, -107.697923),
  travelMode: google.maps.DirectionsTravelMode.DRIVING,
  unitSystem: google.maps.DirectionsUnitSystem.IMPERIAL
};
directionsService.route(request, function(response, status) {
  if (status == google.maps.DirectionsStatus.OK) {
    directionsRenderer.setDirections(response);
  } else {
    alert('Error: ' + status);
  }
});
}


function initmap_santafe() {   
var map = new google.maps.Map(document.getElementById("map_santafe"), {
  zoom: 7,
  mapTypeId: google.maps.MapTypeId.ROADMAP
});
 
var directionsRenderer = new google.maps.DirectionsRenderer();
directionsRenderer.setMap(map);    
directionsRenderer.setPanel(document.getElementById('dir_santafe'));
 
var directionsService = new google.maps.DirectionsService();
var request = {
  origin: "Santa Fe, New Mexico", 
  destination: new google.maps.LatLng(37.347695, -107.697923),
  travelMode: google.maps.DirectionsTravelMode.DRIVING,
  unitSystem: google.maps.DirectionsUnitSystem.IMPERIAL
};
directionsService.route(request, function(response, status) {
  if (status == google.maps.DirectionsStatus.OK) {
    directionsRenderer.setDirections(response);
  } else {
    alert('Error: ' + status);
  }
});
}


function initmap_albuquerque() {   
var map = new google.maps.Map(document.getElementById("map_albuquerque"), {
  zoom: 7,
  mapTypeId: google.maps.MapTypeId.ROADMAP
});
 
var directionsRenderer = new google.maps.DirectionsRenderer();
directionsRenderer.setMap(map);    
directionsRenderer.setPanel(document.getElementById('dir_albuquerque'));
 
var directionsService = new google.maps.DirectionsService();
var request = {
  origin: "Albuquerque, New Mexico", 
  destination: new google.maps.LatLng(37.347695, -107.697923),
  travelMode: google.maps.DirectionsTravelMode.DRIVING,
  unitSystem: google.maps.DirectionsUnitSystem.IMPERIAL
};
directionsService.route(request, function(response, status) {
  if (status == google.maps.DirectionsStatus.OK) {
    directionsRenderer.setDirections(response);
  } else {
    alert('Error: ' + status);
  }
});
}
