//<![CDATA[
function makeMap() {
	var map = new GMap(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.centerAndZoom(new GPoint(-122.667534, 45.421097), 4);
	var marker = new GMarker(new GPoint(-122.667534, 45.421097));
	map.addOverlay(marker);
	var HTML = "<b>Cendix</b><br/>504 4th Street, Suite 741<br/>Lake Oswego, OR<br/>97034<br/><a href='http://maps.google.com/maps?saddr=&daddr=504+4th+St,+Lake+Oswego,+OR+97034' target='_blank'>Directions</a>";
	GEvent.addListener(marker, 'click', function() {
		marker.openInfoWindowHtml(HTML);
	});
	marker.openInfoWindowHtml(HTML);
}
setTimeout('makeMap()', 500); 
//]]>
