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(41.402924, -72.601888), 5);
			map.setCenter(new GLatLng(39.4054277294279, -76.64714813232422), 10);
			
			// Create our "tiny" marker icon
			var icon = new GIcon();
			icon.image = "/images/map_icon.png";
			icon.shadow = "/images/map_icon_shadow.png";
			icon.iconSize = new GSize(54, 58);
			icon.shadowSize = new GSize(103, 58);
			icon.iconAnchor = new GPoint(0, 58);
			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 point1 = new GLatLng(39.389907335002306, -76.73988819122314);
			map.addOverlay(createMarker(point1, '<strong><a href="http://www.radcliffejewelers.com" class="heading">Radcliffe Jewelers - Pikesville</a></strong><br>1848 Reisterstown Road<br>Baltimore, Maryland 21208<br><a href="http://maps.google.com?daddr=1848+Reisterstown+Road+Baltimore+Maryland+21208" target="_blank">Get Directions</a>'));

			var point2 = new GLatLng(39.403792, -76.595472);
			map.addOverlay(createMarker(point2, '<strong><a href="http://www.radcliffejewelers.com" class="heading">Radcliffe Jewelers - Towson</a></strong><br>Towson Town Center<br>Suite 196<br>Towson, Maryland 21204<br><a href="http://maps.google.com?daddr=825+Dulaney+Valley+Rd+Towson+MD+21204" target="_blank">Get Directions</a>'));

			//var point3 = new GLatLng(41.283267, -70.099041);
			//map.addOverlay(createMarker(point3, '<strong><a href="http://www.radcliffejewelers.com" class="heading">Radcliffe Jewelers - Nantucket</a></strong><br>47 Main Street<br>Nantucket, Massachusetts 02554<br><a href="http://maps.google.com?daddr=47+Main+Street+Nantucket+Massachusetts+02554" target="_blank">Get Directions</a>'));

		}
		
	}
	
}

window.addEvent('load', displayMap);
