function initialize() {
    				var latlng = new google.maps.LatLng(20.63242278592104,-87.06835627555847);
    				var myOptions = {
      					zoom: 18,
      					center: latlng,
      					mapTypeId: google.maps.MapTypeId.ROADMAP,
      					mapTypeControlOptions: {
						style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
					}
    				};
    				
    				var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

				/*var flightPlanCoordinates = [
    					new google.maps.LatLng(21.11084551464309,-86.76272392272949),
    					new google.maps.LatLng(21.034599132141533,-86.78555488586426),
    					new google.maps.LatLng(21.036441679768526,-86.85070037841797),
    					new google.maps.LatLng(20.85544312618442,-86.89756393432617),
    					new google.maps.LatLng(20.86458646903027,-87.07008361816406),
    					new google.maps.LatLng(20.922321041811546,-87.05154418945312),
    					new google.maps.LatLng(20.922962412268564,-86.99867248535156),
    					new google.maps.LatLng(20.946691188951412,-86.99352264404297)
  				];
  				var flightPath = new google.maps.Polyline({
    					path: flightPlanCoordinates,
    					strokeColor: "#ff776b",
    					strokeOpacity: 1.0,
   					strokeWeight: 2
  				});

  				flightPath.setMap(map);*/

				var marker = new google.maps.Marker({
        				position: latlng,
       				map: map,
       				icon: 'mapa.png', 
       				title: 'Jeep Adventure'  
			    });	

			    var marker = new google.maps.Marker({
        				position: new google.maps.LatLng(20.632490560573995,-87.0681282877922),
       				map: map,
       				icon: 'mapa2.png', 
       				title: 'Starbucks'  
			    });	
			}	

