//\n
Weathersfield
\n
\n

Available lots: 8

\n

Starting at $69,900

\n

From 1.5 Acres

\nLot Information\n
\"Weathersfield\"\n\n", "
\n
Abingdon
\n
\n

Available lots: 7

\n

Starting at $89,900

\n

From 1.6 Acres

\nLot Information\n
\"Abingdon\"\n
\n", "
\n
Abby Marle
\n
\n

Available lots: 2

\n

Starting at $175,000

\n

From 10.01 Acres

\nLot Information\n
\"Abby\n
\n", "
\n
Eastatoe
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Eastatoe\"\n
\n", "
\n
Devault Farm
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Devault\n
\n", "
\n
Devault Homestead
\n
\n

Available lots: 2

\n

Starting at $49,900

\n

From 2 Acres

\nLot Information\n
\"Devault\n
\n", "
\n
Flint Run
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Flint\n
\n", "
\n
High Hill
\n
\n

Available lots: 3

\n

Starting at $52,500

\n

From 4.1 Acres

\nLot Information\n
\"High\n
\n", "
\n
Huston Ridge
\n
\n

Available lots: 1

\n

Starting at $39,900

\n

From 2.1 Acres

\nLot Information\n
\"Huston\n
\n", "
\n
Lambsdowne
\n
\n

Available lots: 7

\n

Starting at $85,000

\n

From 2 Acres

\nLot Information\n
\"Lambsdowne\"\n
\n", "
\n
Stable in the Woods
\n
\n

Available lots: 3

\n

Starting at $150,000

\n

From 5.5 Acres

\nLot Information\n
\"Stable\n
\n", "
\n
Sullivan Farm
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Sullivan\n
\n", "
\n
Whidby
\n
\n

Available lots: 1

\n

Starting at $42,900

\n

From 1 Acres

\nLot Information\n
\"Whidby\"\n
\n", "
\n
Hickory Hollow
\n
\n

Available lots: 3

\n

Starting at $100,000

\n

From 10.07 Acres

\nLot Information\n
\"Hickory\n
\n", "
\n
Bloomberry
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Bloomberry\"\n
\n", "
\n
Wentworth
\n
\n

ALL SOLD OUT

\nLot Information\n
\"Wentworth\"\n
\n", "
\n
Wintergreen Woods
\n
\n

Available lots: 1

\n

Starting at $49,900

\n

From 1.1 Acres

\nLot Information\n
\"Wintergreen\n
\n", "
\n
River Bluff
\n
\n

ALL SOLD OUT

\nLot Information\n
\"River\n
\n"); var myMarkers = new Array(); function load() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); map.setCenter(new GLatLng(40.42813291388417, -86.88262939453125), 11); // As a point of documentation // ABD Abingdon // AMA Abby Marle // AME Abby Meadows // BPP Baugh Properties // BBY Bloomberry // BCK Bridge Creek // DFM Devault Farm // DHS Devault Homestead // ETT Eastatoe // FCS Fox Chase // HHO Hickory Hollow // HHI High Hill // HRG Huston Ridge // LMD Lambsdowne // MWB Maxwell Blend // RBF River Bluffs // SPH Spring Hill // SIW Stable in the Woods // SLV Sullivan // WTF Weathersfield // WWT Wentworth // WRG Willow Ridge // WTG Wintergreen // User defined function called to place markers on the map //var cntr = 0; for(j in dev["lat"]) { if(dev["show"][j] == 1) { coordinate = new GLatLng(dev["lat"][j], dev["long"][j]); coordinateMarker(map, coordinate, dev["info"][j], dev["abbrev"][j]); //cntr = cntr + 1; } } // If there is a get variable defined to show a marker's text, do it. showMarkerText(); } } function coordinateMarker(mapObj, LatLng, window_text, id) { var marker = new GMarker(LatLng); // Add the marker to an array of markers myMarkers[id] = marker; // Display marker mapObj.addOverlay(marker); // Listen for clicks on markers and display // the conversation bubble upon click GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(window_text); } ); } function addressMarker(mapObj, address, window_text, id) { // "mapObj" is a GMap2 object // "address" is a string representing the address of a location // "window_text" is the html (in string form) that will // be displayed in the conversation window // Initialize the geocoder (convert address to lat/long geocoder = new GClientGeocoder(); if (geocoder) { // Convert "address" address into "point" lat/long geocoder.getLatLng(address, function(point) { if (!point) alert(address + " not found"); else coordinateMarker(mapObj, point, window_text, id); } ); } } function showMarkerText() { } // This bracket ends the showMarkerText() function{} //]]>