$(document).ready(function(){
var map = null;
var geocoder = null;
function showAddress(address, addressText) {
if (geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert(address + " not found");
} else {
map.setCenter(point, 13);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml(addressText);
}
}
);
}
}
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(41.87075, -87.68600), 13);
map.addControl(new GLargeMapControl());
geocoder = new GClientGeocoder();
}
showAddress("50 Braintree Hill Park Braintree, MA 02184-8734", "MIB Solutions, Inc.
50 Braintree Hill Park, Suite 400
Braintree, MA 02184-8734
781.751.6330
View Larger Map/Directions" )
});