	// setup custom pushpin icon
	var baseicon = new GIcon();
	baseicon.image = "http://tour.ua.edu/map/images/mm_20_red.png";
	baseicon.shadow = "http://tour.ua.edu/map/images/mm_20_shadow.png";
	baseicon.iconSize = new GSize(12, 20);
	baseicon.shadowSize = new GSize(22, 20);
	baseicon.iconAnchor = new GPoint(6, 20);
	baseicon.infoWindowAnchor = new GPoint(5, 1);

	// Display Google Maps with some controls 
	var map = new GMap2(document.getElementById("map"));
	map.removeControl();
	map.disableScrollWheelZoom();
	map.disableDragging();
	
	GEvent.addListener(map, "click", function(){
		location.href = url;
	});
	
	if(zoom == null){
		zoom = 17;
	}
	
	function initialize() {
			// add our custom map and center it
			//var dynamicMap = new esri.arcgis.gmaps.DynamicMapServiceLayer("http://mudman.landmgt.ua.edu/arcgis/rest/services/ltlg/Camp_Bldg_LL_DS/MapServer", null, 0.75, dynmapcallback);
			map.setCenter(point,zoom);
	}
	
	function dynmapcallback(mapservicelayer) {
		map.addOverlay(mapservicelayer);
	}
	
	var marker = new GMarker(point,baseicon);
	map.addOverlay(marker);

