// JavaScript Document

//<![CDATA[

function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));

map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());



geocoder = new GClientGeocoder();
var address = "33 Water St, Vancouver, BC"

geocoder.getLatLng( address, 
	function(point) {
		if (!point) {
		  alert(address + " not found");
		} else {
		  map.setCenter(point, 15);
		  var marker = new GMarker(point);
		  map.addOverlay(marker);
		  
		  GEvent.addListener(marker, "click", function() {
			  marker.openInfoWindowHtml("<b style='font-size: 12px; font-family: verdana; color: #00546A;'>Living Blueprint</b>");
			});
		}
	}
);






}
}


//]]>