$(document).ready(function () {
	jQuery(function($) {
		var map = new GMap2(document.getElementById("map_canvas"));
		map.setCenter(new GLatLng(41.206128,-73.576019), 13);
		
		var gmaps_url = "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=6+Pound+Ridge+Road+Pound+Ridge,+NY+10576&ie=UTF8&ll=41.205264,-73.577242&spn=0.044105,0.084887&z=14&iwloc=addr&iwstate1=dir";
	    map.openInfoWindowHtml(map.getCenter(), "<p>6 Pound Ridge Road<br>Pound Ridge, NY 10576</p><p><a target='_blank' href=" + gmaps_url + ">Get Directions</a></p>");
	});
});
