var points = new Array();points.push(new GLatLng(-28.7747,114.609));
points.push(new GLatLng(-28.7314,114.589));
points.push(new GLatLng(-28.5556,114.358));
points.push(new GLatLng(-28.3778,114.044));
points.push(new GLatLng(-28.2522,113.848));
points.push(new GLatLng(-28.2089,113.794));
points.push(new GLatLng(-28.1986,113.776));

				var p = new GLatLng(-28.1986,113.776);
				var icon = new GIcon();
				icon.image = "http://www.indianoceanrowingrace09.com/images/boats/009999.png";
				icon.iconSize = new GSize(11, 11);
				icon.iconAnchor = new GPoint(5, 5);
				var marker4 = new GMarker(p,icon);
				map.addOverlay(marker4);

				var icon = new GIcon();
				icon.image = "http://www.indianoceanrowingrace09.com/images/arrows/7.png";
				icon.iconSize = new GSize(15, 15);
				icon.iconAnchor = new GPoint(7, 7);
				icon.infoWindowAnchor = new GPoint(7, 7);
				var arrMarker4 = new GMarker(p,icon);
				if (typeof(infowindow) != "undefined" && infowindow == true){
					GEvent.addListener(arrMarker4, "mouseover", function() {this.openInfoWindowHtml("<div class=\"google-tooltip\">2 Dream It, Do It<br><a href=\"/progress/byteam/4\">View Progress</a></div>");});
				}
				//GEvent.addListener(arrMarker4, "mouseout", function() {map.closeInfoWindow();});
				map.addOverlay(arrMarker4);
				var p = new GPolyline(points,"#009999",3);map.addOverlay(p);
