  function initialize() {
	  var myLatlng = new google.maps.LatLng(47.6559, -122.3106);
    var myOptions = {
      zoom: 14,
      center: new google.maps.LatLng(47.6559, -122.3106),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"),
                                  myOptions);

    var contentString = '<div id="content_map">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<h2>Meany Hall</h2>'+
        '<div id="bodyContent">'+
        '<p>4001 University Way NE in Seattle, Washington - ' +
        '<a href="http://maps.google.com/maps?f=d&hl=en&geocode=&saddr=&daddr=4001+University+Way+NE,+Seattle,+WA,+98105&sll=&sspn=&ie=UTF8&z=12" target="_blank">Get Driving Directions</a></p> '+
        '<p>Meany Hall for the Performing Arts is considered  '+
        'one of the region&lsquo;s finest performance facilities. </p> '+
        'It includes the 1&#44;206 seat proscenium Meany Theater.  '+
        '<p><b>Free parking</b> is available on Sunday in the '+ 
		'Meany Hall underground garage &#40;41st Street and 15th Avenue&#41;. '+
		'Accessible parking is also available. </p>'+
        '</div>'+
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });

      var image = '/images/mapspot-trans.png';
  var myLatLng = new google.maps.LatLng(47.6559, -122.3106);
  var marker = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image
    });
  
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);

 
  });
}
