/*--------------------------------------------------------------------------*/
/*  WNCOutdoors.info Map Data Script
 *  (c) 2007 WNCOutdoors.info/Jordan Mitchell
 *  All rights reserved.
 *  Note: Lat/Lon coordinates are approximate and used primarily for placing
 *  markers on the map.
/*--------------------------------------------------------------------------*/

// Set map center and setup marker manager in all map specific pages
map.setCenter(new GLatLng(35.41, -82.74), 11, G_HYBRID_MAP);
var mm = new GMarkerManager(map);

// Start displaying points on the map
var point = new GLatLng(35.4863,-82.6373);
var marker = createRegularMarker(point,"Bent Creek Area", gicons["label_bent"],
             '<div style="width:240px">'
             +'<h3 class="center">Bent Creek Area</h3>'
             +'<p>Contains a campground and a wide network of trails for both hiking and '
             +'mountain biking use.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/bentcreek.html">'
             +'Trailhead Details</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4863,-82.6267);
var marker = createRegularMarker(point,"Lake Powhatan Campground", gicons["campground"],
             '<div style="width:240px">'
             +'<h3 class="center">Lake Powhatan Campground</h3>'
             +'<p>Camp on the shores of Lake Powhatan, and walk right out of your campsite onto '
             +'the extensive trail network of Bent Creek.</p>'
             +'<p>Access the Lake Powhatan area by exiting the Parkway at NC 191 or at Bent Creek '
             +'Gap Road.</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4903,-82.6288);
var marker = createRegularMarker(point,"North Side Trails at Bent Creek", gicons["bike"],
             '<div style="width:240px">'
             +'<h3 class="center">North Side Trails at Bent Creek</a></h3>'
             +'<p>Trails on the northwest side of Bent Creek Gap Road are generally more '
             +'difficult than those on the southeast side, and are very popular with mountain '
             +'bikers, although hiking is also enjoyable here.</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4793,-82.6305);
var marker = createRegularMarker(point,"South Side Trails at Bent Creek", gicons["hike"],
             '<div style="width:240px">'
             +'<h3 class="center">South Side Trails at Bent Creek</h3>'
             +'<p>Trails on the southeast side of Bent Creek Gap Road are generally easier than '
             +'those on the northwest side, and connect with the Mountains to Sea/Shut In trail '
             +' and the Blue Ridge Parkway.</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4830,-82.6250);
var marker = createRegularMarker(point,"Lake Powhatan", gicons["camera"],
             '<div style="width:240px;" class="center">'
             +'<h3 class="center">Lake Powhatan</h3>'
             +'<a href="http://gallery.wncoutdoors.info/images/regular/bctreeinpowhatan.jpg" '
             +'rel="lytebox[image1]" onclick="myLytebox.start(this, false); return false;" '
             +'title="Tree in Lake Powhatan">'
             +'<img src="http://gallery.wncoutdoors.info/images/medium/bctreeinpowhatanmed.jpg" '
             +'border="0" width="150" height="200" style="border: 1px solid black">'
             +'</a>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4828,-82.6025);
var marker = createRegularMarker(point,"Mountains to Sea/Shut In Trail", gicons["hike"],
             '<div style="width:240px">'
             +'<h3 class="center">Mountains to Sea/Shut In Trail</h3>'
             +'<p>The Mountains to Sea Trail travels from Clingman\'s Dome in the Great Smoky '
             +'Mountains to the Outer Banks, following Section 5 of the Parkway for much of the '
             +'way. From the NC 191 exit of the Parkway, the path is co-signed as the Shut-in '
             +'trail, a much older trail originally built by George Vanderbilt to access the '
             +'Buck Spring Lodge near Mount Pisgah. Here, the Parkway, the trail, and '
             +'Hardtimes Road at Bent Creek all come together.</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4963,-82.5941);
var marker = createRegularMarker(point,"French Broad Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">French Broad Overlook</h3>'
             +'<p>Overlooks the French Broad River, one of the lowest points on the Parkway '
             +'in North Carolina.</p>'
             +'<ul>'
						 +'<li>Milepost: 393</li>'
						 +'<li><span class="bold">Elevation: </span> 2180 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4656,-82.6291);
var marker = createRegularMarker(point,"Sleepy Gap Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Sleepy Gap Parking Area</h3>'
             +'<p>No view, but good place to access the Mountains to Sea/Shut In Trail, and others '
             +'that descend into the Bent Creek area of the Pisgah National Forest. '
             +'Get on the trail here and go right for about 1 1/2 miles, then return, '
             +'for a nice, pleasant, easy hike.</p>'
             +'<ul>'
						 +'<li>Milepost: 397</li>'
						 +'<li><span class="bold">Elevation: </span> 2934 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4600,-82.6365);
var marker = createRegularMarker(point,"Chestnut Cove Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Chestnut Cove Overlook</h3>'
             +'<p>Another Mountains to Sea Trail/Shut In Trail access.</p>'
             +'<ul>'
						 +'<li>Milepost: 397</li>'
						 +'<li><span class="bold">Elevation: </span> 3000 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4508,-82.6518);
var marker = createRegularMarker(point,"Bad Fork Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Bad Fork Overlook</h3>'
             +'<p>From here, you get your first good view up toward Mount Pisgah.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 400</li>'
						 +'<li><strong>Elevation:</strong> 3390 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4525,-82.6594);
var marker = createRegularMarker(point,"Bent Creek Gap", gicons["fork"],
             '<div style="width:240px">'
             +'<h3 class="center">Bent Creek Gap</h3>'
             +'<p>Exit the Parkway to a bumpy, curvy Forest Service road. Go right on '
             +'Bent Creek Gap Road to reach Lake Powhatan; go left to reach the Mills '
             +'River area and all of its numerous trails.</p>'
             +'<ul>'
						 +'<li>Milepost: 397</li>'
						 +'<li><span class="bold">Elevation: </span> 3000 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4449,-82.6680);
var marker = createRegularMarker(point,"North Mills River Area", gicons["label_mills"],
             '<div style="width:240px">'
             +'<h3 class="center">North Mills River Area</h3>'
             +'<p>Contains a variety of trails and a campground. Another popular Forest Service '
             +'recreation area.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/millsriver.html">'
             +'Trailhead Details</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4560,-82.6699);
var marker = createRegularMarker(point,"Wash Creek Valley Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Wash Creek Valley Overlook</h3>'
             +'<p>Located between two of the three Ferrin Knob tunnels.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 400</li>'
						 +'<li><strong>Elevation:</strong> 3430 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4538,-82.6802);
var marker = createRegularMarker(point,"Beaver Dam Gap Overlook", gicons["picnic"],
             '<div style="width:240px">'
             +'<h3 class="center">Beaver Dam Gap Overlook</h3>'
             +'<p>There is a picnic table here. The only view is across the road.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 401</li>'
						 +'<li><strong>Elevation:</strong> 3570 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4540,-82.6941);
var marker = createRegularMarker(point,"Stoney Bald Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Stoney Bald Overlook</h3>'
             +'<p>Not a great view from here.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 402</li>'
						 +'<li><strong>Elevation:</strong> 3730 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4505,-82.7095);
var marker = createRegularMarker(point,"Big Ridge Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Big Ridge Overlook</h3>'
             +'<p>You can\'t see Big Ridge from here. It is one ridge further behind the '
             +'obvious ridge to your right.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 403</li>'
						 +'<li><strong>Elevation:</strong> 3842 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4505,-82.7095);
var marker = createRegularMarker(point,"View: Hominy Valley Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">View: Hominy Valley Overlook</h3>'
             +'<p>Your first good view West into the peaceful community below.</p> '
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 404</li>'
						 +'<li><strong>Elevation:</strong> 3960 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4429,-82.7201);
var marker = createRegularMarker(point,"Mills River Valley Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Mills River Valley Overlook</h3>'
             +'<p>Views both East and West from here on a steeply climbing section of road. '
             +'This is where you first acheive 4000 ft. elevation since Asheville, and it is '
             +'the last overlook before you reach Mount Pisgah, though the roadside views are '
             +'good.</p> '
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 404</li>'
						 +'<li><strong>Elevation:</strong> 4085 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4340,-82.7304);
var marker = createRegularMarker(point,"NC Highway 151", gicons["fork"],
             '<div style="width:240px">'
             +'<h3 class="center">NC Highway 151</h3>'
             +'<p>Descends steeply to the Hominy Valley and, eventually, Asheville. Beyond '
             +'here, the Parkway climbs steeply up to Mount Pisgah.</p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4153,-82.7487);
var marker = createRegularMarker(point,"Mount Pisgah Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Mount Pisgah Overlook</h3>'
             +'<p>A short access road leads up to this overlook, where you get a good view of '
             +'the south side of Mount Pisgah. Also, the Mountains to Sea/Shut In trail meets '
             +'the road here and continues toward the Pisgah Inn as just the Mountains to Sea '
             +'Trail. It passes the old Buck Spring Lodge site - the destination for the Shut-In '
             +'Trail, which makes a nice, easy hike from here.</p>'
             +'<p>Buck Spring itself is located just uphill of where the access road meets the '
             +'Parkway, in a small shed.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 404</li>'
						 +'<li><strong>Elevation:</strong> 4950 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4186,-82.7481);
var marker = createRegularMarker(point,"Mount Pisgah Trailhead Parking Area", gicons["hike"],
             '<div style="width:240px">'
             +'<h3 class="center">Mount Pisgah Trailhead Parking Area</h3>'
             +'<p>Stay on the access road from the Mount Pisgah Overlook to cross over the '
             +'Buck Spring tunnel and reach the parking area. This is where the Mount Pisgah '
             +'Trail and Best Hike begins.</p>'
						 +'<p class="center"><strong>Mount Pisgah Best Hike<br />'
             +'More Information</strong><br />'
						 +'<a href="http://hikewnc.info/trailheads/parkway/guidedhikes/mountpisgah.html"> '
						 +'Details</a> | '
						 +'<a href="http://hikewnc.info/trailheads/parkway/guidedhikes/mountpisgahmap.html"> '
						 +'Map</a> | '
						 +'<a href="http://hikewnc.info/gallery/index.html?action=displayGallery&gallery=21">'
						 +'Photos</a></p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4259,-82.7571);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Mount Pisgah</h3>'
                 +'<p>At 5721\' in elevation, Mount Pisgah is clearly visible from the '
                 +'surrounding valleys, including Asheville, and lends its name to the '
                 +'Pisgah National Forest and local Ranger District. It is named for the '
                 +'biblical mountain from which Moses saw the promised land.</p>'),
               new GInfoWindowTab("Photo",
                 '<div align="center" style="width:240px">'
                 +'<a href="http://gallery.wncoutdoors.info/images/regular/mpview.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Mount Pisgah in Early Autumn">'
                 +'<img src="'
		             +'http://gallery.wncoutdoors.info/images/medium/mpview.jpg"'
					       +' width="200" height="150" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Mount Pisgah",
             gicons["camera"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4125,-82.7518);
var marker = createRegularMarker(point,"Mount Pisgah Picnic Area", gicons["picnic"],
             '<div style="width:240px">'
             +'<h3 class="center">Mount Pisgah Picnic Area</h3>'
             +'<p>Huge picnic area around a large, open field lined with gnarled oaks. A '
             +'favorite place to beat the Asheville heat during the summer and play a game of '
             +'wiffle ball. Facilities include grills and restrooms.</p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4066,-82.7545);
var marker = createRegularMarker(point,"Flat Laurel Gap Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Flat Laurel Gap Overlook</h3>'
             +'<p>Huge, open parking area.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 407</li>'
						 +'<li><strong>Elevation:</strong> 4960 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4025,-82.7566);
var marker = createRegularMarker(point,"Pisgah Inn, Restaurant, Camp Store", gicons["town"],
             '<div style="width:240px">'
             +'<h3 class="center">Pisgah Inn, Restaurant, and Camp Store</h3>'
             +'<p>The camp store provides camping supplies, maps, and convenience type items '
             +'along with restrooms for a quick stop along the Parkway. The Inn and Restaurant '
             +'make a great destination for lodging and dining. Walk-ins welcome; the view '
             +'is incredible!</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 408</li>'
						 +'<li><strong>Elevation:</strong> 4920 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4047,-82.7558);
var marker = createRegularMarker(point,"Mount Pisgah Campground", gicons["campground"],
             '<div style="width:240px">'
             +'<h3 class="center">Mount Pisgah Campground</h3>'
             +'<p>Beautiful campground with secluded, shady yet paved sites. Separate areas '
             +'for RV\'s and tents and clean facilities. Cool summer nights make this one of '
             +'the finest places to camp in the Southern Appalachians!</p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3893,-82.7400);
var marker = createRegularMarker(point,"South Mills River Area", gicons["label_mills"],
             '<div style="width:240px">'
             +'<h3 class="center">South Mills River Area</h3>'
             +'<p>Long, remote trails are a feature of this Forest Service recreation area. Access '
             +'by taking US 276 to Yellow Gap Road, left just before the Pink Beds area.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/millsriver.html">'
             +'Trailhead Details</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3955,-82.7629);
var marker = createRegularMarker(point,"View Funnel Top", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">View Funnel Top</h3>'
             +'<p>Great view back toward the Pisgah Inn and down into the Pink Beds area, where '
             +'the South Mills River begins, and of course of Funnel Top Mountain.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 409</li>'
						 +'<li><strong>Elevation:</strong> 4927 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3872,-82.7757);
var marker = createRegularMarker(point,"The Pink Beds Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">The Pink Beds Overlook</h3>'
             +'<p>Good view down into the Pink Beds area and the surrounding mountains.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 410</li>'
						 +'<li><strong>Elevation:</strong> 4809 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3811,-82.7814);
var marker = createRegularMarker(point,"The Cradle of Forestry Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">The Cradle of Forestry Overlook</h3>'
             +'<p>Here you start to get some views toward Looking Glass rock, an icon of the '
             +'Pisgah National Forest. Below you lies the birthplace of scientific forest '
             +'management in the United States - the Cradle of Forestry. To reach this area, as '
             +'well as the Pink Beds area, Looking Glass Rock, Sliding Rock, and Looking Glass '
             +'Falls, turn left when you get to US 276 about a mile further on.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 411</li>'
						 +'<li><strong>Elevation:</strong> 4720 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3747,-82.79);
var marker = createRegularMarker(point,"Cold Mountain Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Cold Mountain Overlook</h3>'
             +'<p>You can get an overgrown view of Cold Mountain from this large overlook, but '
             +'the view is better from places where you\'ll have to take a hike - like Mount '
             +'Pisgah, Fryingpan Mountain, or the summit of Cold Mountain itself!</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 412</li>'
						 +'<li><strong>Elevation:</strong> 4542 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3751,-82.7893);
var marker = createRegularMarker(point,"US Highway 276", gicons["fork"],
             '<div style="width:240px">'
             +'<h3 class="center">US Highway 276</h3>'
             +'<p>Exit the Parkway and turn left toward Brevard to enter the Pisgah National '
             +'forest\'s Davidson River area. This is the quintessential National Forest area '
             +'with dozens of trails, waterfalls, campgrounds, picnic areas, museums, and more. '
             +'Good food, gas, and lodging are available in Brevard.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/davidson.html">'
             +'Trailhead Details</a></p>'
             +'<p>Turn right to reach the Big East Fork trailhead in the Shining Rock Wilderness '
             +'in a few miles.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/shining.html">'
             +'Trailhead Details</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3655,-82.8179);
var marker = createRegularMarker(point,"Big East Fork Trailhead", gicons["hike"],
             '<div style="width:240px">'
             +'<h3 class="center">Big East Fork Trailhead</h3>'
             +'<p>A popular entrance to the Shining Rock Wilderness on the beautiful East Fork '
             +'of the Pigeon River. A tip: both trails that start here are very easy and scenic '
             +'at their beginnings, and not too far off the Parkway. But the crowds don\'t know '
             +'that!</p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3700,-82.7915);
var marker = createRegularMarker(point,"Wagon Road Gap Parking Area", gicons["picnic"],
             '<div style="width:240px">'
             +'<h3 class="center">Wagon Road Gap Parking Area</h3>'
             +'<p>A good place to stop and eat with one shady table if you\'re not heading down to '
             +'one of the larger Pisgah National Forest picnic areas on US 276. No view, but '
             +'a good Mountains to Sea Trail access.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 412</li>'
						 +'<li><strong>Elevation:</strong> 4550 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3577,-82.7934);
var marker = createRegularMarker(point,"Pounding Mill Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Pounding Mill Overlook</h3>'
             +'<p>Wide, spectacular view. Looking Glass Rock looms closer.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 413</li>'
						 +'<li><strong>Elevation:</strong> 4700 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3367,-82.8147);
var marker = createRegularMarker(point,"View Cherry Cove", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">View Cherry Cove</h3>'
             +'<p>The view from Cherry Gap is kind of overgrown but extends both directions.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 415</li>'
						 +'<li><strong>Elevation:</strong> 4327 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3367,-82.8147);
var marker = createRegularMarker(point,"Cherry Cove Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Cherry Cove Overlook</h3>'
             +'<p>The view from Cherry Gap is kind of overgrown but extends both directions.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 415</li>'
						 +'<li><strong>Elevation:</strong> 4327 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3299,-82.8211);
var marker = createRegularMarker(point,"Log Hollow Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">Log Hollow Overlook</h3>'
             +'<p>Another one that is slightly overgrown, but nice nonetheless.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 416</li>'
						 +'<li><strong>Elevation:</strong> 4445 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3219,-82.8279);
var marker = createRegularMarker(point,"Looking Glass Rock Overlook", gicons["hike"],
             '<div style="width:240px">'
             +'<h3 class="center">Looking Glass Rock Overlook</h3>'
             +'<p>A great view of the famous mountain from this overlook. Plus, the hike to '
             +'Skinny Dip Falls begins right at the mile marker across the road. A short path '
             +'leads to the Mountains to Sea Trail which takes you down to a beautiful, 3-tiered '
             +'waterfall on the Yellowstone Prong.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 417</li>'
						 +'<li><strong>Elevation:</strong> 4492 ft.</li>'
						 +'</ul>'
        +'<p class="center"><strong>Skinny Dip Falls Best Hike</strong><br>'
        +'<a href="http://www.hikewnc.info/trailheads/parkway/guidedhikes/skinnydipfalls.html">'
        +'Details</a> |'
        +'<a href="http://www.hikewnc.info/gallery/index.html?action=displayGallery&gallery=26">'
        +'Photos</a></p>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3220,-82.8382);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Skinny Dip Falls</h3>'
                 +'<p>This small falls makes a great place to take a dip during the summer. '
                 +'It\'s easy to get to, and the cold, clear water is inviting.</p>'
        +'<p class="center"><strong>Skinny Dip Falls Best Hike</strong><br>'
        +'<a href="http://www.hikewnc.info/trailheads/parkway/guidedhikes/skinnydipfalls.html">'
        +'Details</a> |'
        +'<a href="http://www.hikewnc.info/gallery/index.html?action=displayGallery&gallery=26">'
        +'Photos</a></p>'
                 ),
               new GInfoWindowTab("Photo",
                 '<div align="center" style="width:240px">'
                 +'<a href="http://gallery.wncoutdoors.info/images/regular/sdf_upperfalls.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Skinny Dip Falls">'
                 +'<img src="'
		             +'http://gallery.wncoutdoors.info/images/medium/sdf_upperfalls.jpg"'
					       +' width="200" height="150" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Skinny Dip Falls",
             gicons["waterfall"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3216,-82.8406);
var marker = createRegularMarker(point,"East Fork Overlook", gicons["parking"],
             '<div style="width:240px">'
             +'<h3 class="center">East Fork Overlook</h3>'
             +'<p>Above Yellowstone Falls, this impressive overlook gives a good view of the steep '
             +'gorge below. An impressive rock cut is on the other side of the road.</p>'
             +'<ul>'
						 +'<li><strong>Milepost:</strong> 418</li>'
						 +'<li><strong>Elevation:</strong> 4900 ft.</li>'
						 +'</ul>'
						 +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3204,-82.8473);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:340px">'
                 +'<h3 class="center">Graveyard Fields Overlook</h3>'
                 +'<p>What a view! The high valley is filled with meadows and lined with bare '
                 +'mountains. This is one of the most popular overlooks on the Parkway for this '
                 +'reason. An excellent hike goes through the valley to two waterfalls.</p>'
                 ),
               new GInfoWindowTab("Photo 1",
                 '<div align="center" style="width:340px">'
                 +'<a href="http://www.gallery.wncoutdoors.info/images/regular/gfieldsspring.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Graveyard Fields in Spring">'
                 +'<img src="'
		             +'http://www.gallery.wncoutdoors.info/images/medium/gfieldsspring.jpg"'
					       +' width="150" height="200" style="border: 1px solid black"></a></div>'
                 ),
               new GInfoWindowTab("Photo 2",
                 '<div align="center" style="width:340px">'
                 +'<a href="http://www.gallery.wncoutdoors.info/images/regular/gfields_sunset.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Graveyard Fields at Sunset in Summer">'
                 +'<img src="'
		             +'http://www.gallery.wncoutdoors.info/images/medium/gfields_sunset.jpg"'
					       +' width="200" height="150" style="border: 1px solid black"></a></div>'
                 )
               ];
var marker = createMarkerWithTabbedWindow(point,"Graveyard Fields Overlook",
             gicons["parking"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3218,-82.8529);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Graveyard Fields Best Hike</h3>'
                 +'<p>Take a hike through this spectacular valley. Follow the meandering stream '
                 +'to two waterfalls and through forests and meadows. Highly recommended and '
                 +'highly popular.</p>'
  +'<p class="center"><strong>Graveyard Fields Best Hike</strong><br>'
  +'<a href="http://www.hikewnc.info/trailheads/pisgah/pisgah/guidedhikes/graveyardfields.html">'
  +'Details</a> |'
  +'<a href="http://maps.wncoutdoors.info/map.php?map=bbalsam_sknob_flc_gfields">'
  +'Map</a> |'
  +'<a href="http://www.hikewnc.info/gallery/index.html?action=displayGallery&gallery=26">'
  +'Photos</a></p>'
                 ),
               new GInfoWindowTab("Photo",
             '<div align="center" style="width:240px">'
             +'<a href="http://www.gallery.wncoutdoors.info/images/regular/gfieldsnewtrail.jpg" '
             +'onclick="myLytebox.start(this, false); return false;" '
             +'rel="lytebox[image]" title="New Trail in Graveyard Fields">'
             +'<img src="'
		         +'http://www.gallery.wncoutdoors.info/images/medium/gfieldsnewtrail.jpg"'
					   +' width="200" height="150" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Graveyard Fields Best Hike",
             gicons["hike"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3221,-82.8466);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Second Falls in Graveyard Fields</h3>'
                 +'<p>The second falls on the Yellowstone Prong (hence the name) is easy to '
                 +'get to and an unbeatable destination for a hike, even if you don\'t do the '
                 +'rest of the Graveyard Fields Loop.</p>'),
               new GInfoWindowTab("Photo",
            '<div class="center" style="width:240px">'
            +'<a href="http://www.gallery.wncoutdoors.info/images/regular/gfieldssecondfalls.jpg" '
            +'onclick="myLytebox.start(this, false); return false;" '
            +'rel="lytebox[image4]" title="Second Falls in Graveyard Fields">'
            +'<img src="'
		        +'http://gallery.wncoutdoors.info/images/medium/gfieldssecondfalls.jpg"'
					  +' width="150" height="200" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Second Falls",
             gicons["waterfall"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3182,-82.8676);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Upper Falls</h3>'
                 +'<p>This small falls makes a great hiking destination and it is just that '
                 +'for the Graveyard Fields Trail and Best Hike.</p>'),
               new GInfoWindowTab("Photo",
                 '<div class="center" style="width:240px">'
                 +'<a href="http://gallery.wncoutdoors.info/images/regular/gfieldsupperfalls.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Upper Falls in Graveyard Fields">'
                 +'<img src="'
		             +'http://gallery.wncoutdoors.info/images/medium/gfieldsupperfalls.jpg"'
					       +' width="150" height="200" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Upper Falls",
             gicons["waterfall"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3159,-82.8693);
var marker = createRegularMarker(point,"Black Balsam Road", gicons["fork"],
             '<div style="width:240px">'
             +'<h3 class="center">Black Balsam Road</h3>'
             +'<p>Exit the Parkway on this Forest Service road to travel into the high mountains '
             +'around Black Balsam Knob. There are a variety of easy to difficult trails, and you '
             +'can access the Shining Rock Wilderness as well.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/black.html">'
             +'Trailhead Details</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3278,-82.8746);
var marker = createRegularMarker(point,"Black Balsam Knob", gicons["camera"],
             '<div style="width:240px" class="center">'
             +'<h3 class="center">Black Balsam Knob</h3>'
             +'<a href="http://www.gallery.wncoutdoors.info/images/regular/bbgroupofspruces.jpg" '
             +'onclick="myLytebox.start(this, false); return false;" '
             +'rel="lytebox[image]" title="Black Balsam Knob">'
             +'<img src="'
		         +'http://www.gallery.wncoutdoors.info/images/medium/bbgroupofspruces.jpg"'
					   +' width="200" height="150" style="border: 1px solid black"></a></div>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3256,-82.8820);
var marker = createRegularMarker(point,"Black Balsam Parking Area", gicons["parking"],
             '<div style="width:240px" class="center">'
             +'<h3 class="center">Black Balsam Parking Area</h3>'
             +'<p>The large parking area is a popular jumping-off point for hikes to Black Balsam '
             +'Knob itself, through the meadows to the waterfalls on Flat Laurel Creek, up to Sam '
             +'Knob, and out across Tennent Mountain to the Shining Rock Wilderness and Shining '
             +'Rock itself.</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3096,-82.8003);
var marker = createRegularMarker(point,"Davidson River Area", gicons["label_davidson"],
             '<div style="width:240px">'
             +'<h3 class="center">Davidson River Area</h3>'
             +'<p>One of the best places to go hiking in Western North Carolina. Contains a large '
             +'variety of trails and other attractions, such as rivers, waterfalls, picnic areas, '
             +'camping, visitor centers, and museums.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/davidson.html">'
             +'Trailhead Details</a> |' 
             +'<a href="http://hikewnc.info/trailheads/pisgah/pisgah/davidson_maps.html">'
             +'Overview Map</a></p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3130,-82.8791);
var marker = createRegularMarker(point,"Trail Through the Spruces", gicons["hike"],
             '<div style="width:240px" class="center">'
             +'<h3 class="center">Trail Through the Spruces</h3>'
             +'<p>Take an easy stroll on this level section of the Mountains to Sea Trail, '
             +'starting halfway up Black Balsam Road where the trail crosses the road. Or, take a '
             +'bit longer hike out to Chestnut Bald or Devil\'s Courthouse for a great view, or '
             +'combine this section with the Little Sam and Flat Laurel Creek trails for a loop '
             +'</p>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3067,-82.8885);
var marker = createRegularMarker(point,"View from Chestnut Bald", gicons["camera"],
             '<div style="width:240px" class="center">'
             +'<h3 class="center">View from Chestnut Bald</h3>'
      +'<a href="http://www.gallery.wncoutdoors.info/images/regular/brp_prd_lookingglass_fall.jpg" '
             +'onclick="myLytebox.start(this, false); return false;" '
             +'rel="lytebox[image99]" title="View of the Parkway and Looking Glass Rock below '
             +'Chestnut Bald">'
             +'<img src="'
		         +'http://www.gallery.wncoutdoors.info/images/medium/brp_prd_lookingglass_fall.jpg"'
					   +' width="150" height="200" style="border: 1px solid black"></a></div>'
             +'</div>'
             );
mm.addMarker(marker,11,17);

var point = new GLatLng(35.3027,-82.8959);
var tabsHtml = [
               new GInfoWindowTab("Description",
                 '<div style="width:240px">'
                 +'<h3 class="center">Devil\'s Courthouse</a></h3>'
                 +'<p>This neat, high peak has some high, sheer cliffs and a steep but short trail '
                 +'leads to the top for some great views. It starts from the overlook of the same '
                 +' name.</p>'),
               new GInfoWindowTab("Photo",
                 '<div align="center" style="width:240px">'
                 +'<a href="http://gallery.wncoutdoors.info/images/regular/devilscourthouse.jpg" '
                 +'onclick="myLytebox.start(this, false); return false;" '
                 +'rel="lytebox[image]" title="Devil\'s Courthouse">'
                 +'<img src="'
		             +'http://gallery.wncoutdoors.info/images/medium/devilscourthouse.jpg"'
					       +' width="150" height="200" style="border: 1px solid black"></a></div>')
               ];
var marker = createMarkerWithTabbedWindow(point,"Devil's Courthouse",
             gicons["hike"],tabsHtml);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.4995,-82.5935);
var marker = createImportantMarker(point,"Blue Ridge Parkway Section 5 Start",
             gicons["label_start"],
             '<div style="width:240px">'
             +'<h3 class="center">Blue Ridge Parkway Section 5 Start</a></h3>'
             +'<p>Be sure to zoom in and explore all the overlooks, hikes, picnic areas, '
             +'campgrounds, and other amenities as you follow the Parkway southwest on the map! '
             +'Click on the symbols to open info windows like this one with descriptions, photos, '
             +' and links to more information.</p>'
             +'<p class="center">'
             +'<a href="http://hikewnc.info/trailheads/parkway/section4/map.html">Go back to '
             +'Section 4</a></p>'
             +'</div>'
             ,1);
mm.addMarker(marker,11,17);

var point = new GLatLng(35.2986,-82.9106);
var marker = createImportantMarker(point,"Blue Ridge Parkway Section 5 End", gicons["label_end"],
             '<div style="width:240px">'
             +'<h3 class="center">Blue Ridge Parkway Section 5 End</a></h3>'
             +'<p>You may <a href="/trailheads/parkway/section6/map.html"> continue to section 6 '
             +'</a></p>'
             +'</div>'
             ,1);
mm.addMarker(marker,11,17);

