function gLoad() {

	// hide all directions that aren't associated with a selected row

	if (GBrowserIsCompatible()) {

		// create the map centered on the WDCH
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(34.055415, -118.250055), 16);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		
		// create a custom icon for the Bowl point
		var bowl = new GIcon();
		bowl.image = "/media/images/visit/star.png";
		bowl.iconSize = new GSize(33, 33);
		bowl.iconAnchor = new GPoint(15, 15);
		bowl.infoWindowAnchor = new GPoint(16, 16);
		
		// apply a marker on the Bowl
		var marker = new GMarker(map.getCenter(),bowl);
		map.addOverlay(marker);
		
		// attach an info window to the marker
		marker.bindInfoWindowHtml('<strong>Walt Disney Concert Hall</strong><br />111 South Grand Avenue,<br />Los Angeles, CA 90012');

	}

}