/**
 * Custom Child Scripts
 */



function initialize() {
    var myLatlng = new google.maps.LatLng(29.666101,-98.642497);
    var myOptions = {
      zoom: 9,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var contentString = '<div id="content">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<h1 id="firstHeading" class="firstHeading">Los Encinos Texas Hill Country Estate</h1>'+
        '<div id="bodyContent">'+
        '<p><b>Los Encinos</b>, at the foothills of the Texas Hill Country. ' +
        'From San Antonio, take I10 West and exit Boerne Stage Road. '+
        'Turn left at the stop sign and proceed two tenths of a mile and Los Encinos is on the left</p> '+
        '</div>'+
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'Uluru (Ayers Rock)'
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

