$(document).ready(function(){
    var latlng = new google.maps.LatLng(38.220086,-85.733811);
    var myOptions = {
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"), /*map_canvas is the div where the map will go and need dimensions set*/
        myOptions);

  	var contentString = '<div id="content">'+
    '<div id="siteNotice">'+
    '<h2>Junior League of Louisville</h1>'+
    '<div id="bodyContent">'+
    '<p>982 Eastern Parkway, Suite 7 <br />Louisville, KY 40217<br />502-637-5415</p>'+
    '</div>'+
    '</div>';

var infowindow = new google.maps.InfoWindow({
    content: contentString
});
  	
  	var marker = new google.maps.Marker({
      position: latlng,
      map: map,
      title:"Junior League of Columbia, Inc."  
 	 });
 	 
 	 
 	 google.maps.event.addListener(marker, 'click', function() {
		infowindow.open(map,marker);
	});
 	 
 	 marker.setMap(map);
}); 






