$(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", "<strong>MIB Solutions, Inc.</strong><br />50 Braintree Hill Park, Suite 400<br />Braintree, MA 02184-8734<br />781.751.6330<br /><a href='http://maps.google.com/maps?f=d&source=s_q&hl=en&geocode=&q=50+Braintree+Hill+Park+Braintree,+MA+02184-8734&sll=37.0625,-95.677068&sspn=49.757664,79.101563&ie=UTF8&z=16&iwloc=addr' target='_blank'>View Larger Map/Directions</a>" )
	
});