google.load("maps", "2");
   
// Call this function when the page has been loaded
function initialize() {
	var map = new google.maps.Map2(document.getElementById("map"));
	map.setCenter(new google.maps.LatLng(39.755815, -75.297346), 15);
	map.openInfoWindowHtml(map.getCenter(), "<b>Swedesboro Animal Hospital</b><br />392 Kings Highway<br />Woolwich Township, NJ 08085<br />856.467.0004<br /><a href=\"http://maps.google.com/maps?q=39.755815,-75.297346(392+Kings+Highway,+Woolwich+Township,+NJ+08085)\" mce_href=\"http://maps.google.com/maps?q=39.755815,-75.297346(392+Kings+Highway,+Woolwich+Township,+NJ+08085)\">Open on Google Maps</a>");
}

google.setOnLoadCallback(initialize);
