function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var geocoder = new GClientGeocoder();
		map.addControl(new GSmallMapControl());
		
		function showAddress(address, title) {
			geocoder.getLatLng(
				address,
				function(point) {
					if(point) {
						map.setCenter(point, 9);
						var marker = new GMarker(point);
						GEvent.addListener(marker, "click", function() {
							marker.openInfoWindowHtml('<strong>'+title+'</strong><br />'+address+'<br /><a href="http://maps.google.com/maps?f=q&hl=en&geocode=&q=1237+Central+Avenue,+Albany,+NY+12205&sll=37.0625,-95.677068&sspn=43.578243,93.164063&ie=UTF8&ll=42.697025,-73.809049&spn=0.00992,0.022745&z=16&iwloc=addr">Get directions from Google Maps</a>');
						});
						map.addOverlay(marker);
					}
				}
			);
		}
		
		showAddress("1237 Central Avenue, Albany, NY 12205","The Music Studio");
	}
}

$(document).ready(function() { load(); });