//<![CDATA[
function load() 
{
	if (GBrowserIsCompatible()) {
		// Create map and attach it to div
		var map = new GMap2(document.getElementById("map"));
		
		// Place the center of the map on the property
		map.setCenter(new GLatLng(30.208681, -97.983738), 14);
		
		// Add copntrols to map
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		
		// Set map type to satellite
		map.setMapType(G_SATELLITE_MAP);
		
		// Create polyline object
		var polyline = new GPolyline([
			new GLatLng(30.216778, -97.981794),
			new GLatLng(30.213292, -97.977067),
			new GLatLng(30.207428, -97.976131),
			new GLatLng(30.204208, -97.982690),
			new GLatLng(30.203848, -97.983184),
			new GLatLng(30.203401, -97.984129),
			new GLatLng(30.203181, -97.984793),
			new GLatLng(30.207281, -97.986662),
			new GLatLng(30.208681, -97.983738),
			new GLatLng(30.216778, -97.981794)
		], "#FF0000", 3);
		
		// Add polyline to map
		map.addOverlay(polyline);
	}
}
//]]>