function initialize() {
    var latlng = new google.maps.LatLng(40.710875, -73.933830);
    var myOptions = {
		zoom: 15,
      	center: latlng,
      	mapTypeControl: false,
   		navigationControl: true,
   		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
      	mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map"), myOptions);
    
    var workshop = new google.maps.LatLng(40.710875,-73.933830);
    var workshopMarker = new google.maps.Marker({
    	position: workshop,
    	map: map,
    	title: "3rd Ward Studios"
    });
  }
