function initialize() {
          if (GBrowserIsCompatible()) 
	  {
               	if (document.getElementById("office_canvas1") != null) 
		{
               		var map = new GMap2(document.getElementById("office_canvas1"));
               		map.setMapType(G_NORMAL_MAP)
               		map.setCenter(new GLatLng(39.652494,-104.999425), 15);
               		var marker = new GMarker(new GLatLng(39.652494,-104.999425));
               		var html = '<div style="width:220px;padding-right: 5px;"><p><img src="/images/building.jpg" style="float:right; width: 75px; height:113px" />'+
               		'<strong>Veterinary Cancer Specialists</strong><br />3550 South Jason St,<br /> Englewood, CO<br /> 80110'+
               		'</p></div>';
               		map.addOverlay(marker);
               		marker.openInfoWindowHtml(html); 
               		map.setUIToDefault();      
               }
          }
     }
