function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("location-map"));
		map.addControl(new GSmallMapControl());
		//map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(-29.8249615052676, 30.83064079284668), 13);
		
		// Create our "tiny" marker icon
		var tinyIcon = new GIcon();
		tinyIcon.image = "/assets/layout/map-icon.png";
		tinyIcon.iconSize = new GSize(18, 18);
		tinyIcon.iconAnchor = new GPoint(6, 6);
		tinyIcon.infoWindowAnchor = new GPoint(6, 6);
		
		// Set up our GMarkerOptions object literal
		markerOptions = { icon:tinyIcon };
		
		var latlng = new GLatLng(-29.8249615052676, 30.83064079284668);
		map.addOverlay(new GMarker(latlng, markerOptions));
		
      }
    }
