var googleMap =
{
	init: function load() 
	{
      if (GBrowserIsCompatible()) {
        var mapG = new GMap2(document.getElementById("uptownlocation"));
        mapG.addControl(new GSmallMapControl());
        mapG.setCenter(new GLatLng(44.9481450, -93.2951060), 10);
        function createMarker(point, text, title) {
          var marker = new GMarker(point,{title:title});
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(text);
          });
          return marker;
        }
                var marker = createMarker(new GLatLng(44.9481450, -93.2951060), '<strong>Uptown Dermatology</strong><br>1221 W. Lake St #208<br>Minneapolis, MN 55408<br>Click <a href="http://www.google.com/maps?q=1221+West+Lake+Street.+55408&oi=map&ct=directions-to&daddr=1221+West+Lake+St%2C+Minneapolis%2C+MN+55408&saddr=&rl=1">HERE</a> for directions to this location. ', 'Uptown Dermatology');
        mapG.addOverlay(marker);
                
              }
    }
};

Core.start(googleMap);
