function displayMap() {
	
	var mapElement = document.getElementById('map');

	if (mapElement) {
	
		if (GBrowserIsCompatible()) {
			
			var map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(40.526433,-74.401997), 14);
			
			// Create our "tiny" marker icon
			var icon = new GIcon();
			icon.image = "_common/images/map_icon.png";
			icon.shadow = "_common/images/map_icon_shadow.png";
			icon.iconSize = new GSize(66, 41);
			icon.shadowSize = new GSize(123, 41);
			icon.iconAnchor = new GPoint(0, 41);
			icon.infoWindowAnchor = new GPoint(30, 15);
			
			function createMarker(point, html) {
				var marker = new GMarker(point, icon);
				GEvent.addListener(marker, "click", function() {
					marker.openInfoWindowHtml(html);
				});
				return marker;
			}
			
			var point = new GLatLng(40.526433,-74.401997);
			map.addOverlay(createMarker(point, '<strong>G&A Services, LLC</strong><br>250 Carter Drive<br>Edison, NJ 08817<br><a href="http://maps.google.com/maps?source=ig&hl=en&rlz=&um=1&ie=UTF-8&cid=0,0,140047835691468017&fb=1&hq=G%26A+Services,+LLC.+|+250+Carter+Drive,&hnear=Edison,+NJ+08817&gl=us&daddr=250+Carter+Drive,+Edison,+NJ+08817&geocode=6523465070906704364,40.526433,-74.401997&ei=KHfDSuTOMpWGlAfRm4TgBA&sa=X&oi=local_result&ct=directions-to&resnum=1&ved=0CBEQngIwAA">Get Directions</a>'));
			
		}
		
	}
	
}

// 40.526433,-74.401997
// 40.526433,-74.401997
// 40.526433,-74.401997
