	var geocoder;
	var map;
	
	// ==================================================
	// A function to create a tabbed marker and set up the event window
	function createTabbedMarker(point, icon, label1, html1, label2, html2) 
	{
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, "click", function() {
		  marker.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)]);
		});
		return marker;
	}
	// ==================================================	

	// ==================================================
	// A function to create a tabbed marker and set up the event window
	function create3TabbedMarker(point, icon, label1, html1, label2, html2, label3, html3) 
	{
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, "click", function() {
		  marker.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2), new GInfoWindowTab(label3,html3)]);
		});
		return marker;
	}
	// ==================================================	
	
	// Creates a marker at the given point with the given number label	
	function createMarker(point, icon, text) 
	{
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, "click", function() 
			{
				marker.openInfoWindowHtml(text);
			});

		return marker;
	}
	



	
    function initialize() {
      if (GBrowserIsCompatible())
	  {
	  
		var icon = new GIcon();
		icon.image = "http://westernag.ca/innov/images/probe_icon.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(10, 30);
		icon.shadowSize = new GSize(22, 25);
		icon.iconAnchor = new GPoint(6, 25);
		icon.infoWindowAnchor = new GPoint(5, 4);
			
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(0, 0), 1);
        map.setUIToDefault();

        map.enableGoogleBar();

		
		map.addOverlay(createTabbedMarker(new GLatLng(52.140876489079204, -106.63289308547974), icon, "Company", "<table><td><b><a href='http://westernag.ca'>Western Ag Innovations</a></b><br />Saskatoon, Saskatchewan, Canada</td><td>&nbsp;&nbsp;&nbsp;</td><img src='images/WAI_logo.png' height='70' /></td></table>", "Images", ""));
		map.addOverlay(createMarker(new GLatLng(-37.84, 140.770004), icon, "Mount Gambier, Australia"));
		map.addOverlay(createMarker(new GLatLng(-35.310001, 149.130004), icon, "Canberra, Australia"));
		map.addOverlay(createMarker(new GLatLng(-22.709999, -47.639999), icon, "Piracicaba, Brazil")); 
		map.addOverlay(createMarker(new GLatLng(49.789838, -112.145941), icon, "Taber, Alberta, Canada")); 
		map.addOverlay(createMarker(new GLatLng(50.688215, -120.313913), icon, "Kamloops Canada")); 
		map.addOverlay(createMarker(new GLatLng(43.535309, -80.246183), icon, "Guelph Canada")); 
		map.addOverlay(createMarker(new GLatLng(53.53279, -113.503383), icon, "Edmonton, Alberta, Canada")); 
		map.addOverlay(createMarker(new GLatLng(49.647773, -108.412606), icon, "Shaunavon, Saskatchewan, Canada")); 
		map.addOverlay(createMarker(new GLatLng(49.844626, -99.953993), icon, "Brandon Manitoba Canada")); 
		map.addOverlay(createMarker(new GLatLng(60.709999, 10.859999), icon, "Kapp, Norway"));  
		map.addOverlay(createMarker(new GLatLng(31.409999, 73.11), icon, "Faisalabad, Pakistan")); 
		map.addOverlay(createMarker(new GLatLng(18.219999, -67.150001), icon, "Mayagüez, Puerto Rico")); 
		map.addOverlay(createMarker(new GLatLng(33.893269, 10.10291), icon, "Gabes, Tunisia")); 
		map.addOverlay(createMarker(new GLatLng(36.175, -115.136389), icon, "Las Vegas, USA")); 
		map.addOverlay(createMarker(new GLatLng(36.974167, -122.029722), icon, "Santa Cruz, USA")); 
		map.addOverlay(createMarker(new GLatLng(42.440556, -76.496944), icon, "Ithaca, USA"));
		map.addOverlay(createMarker(new GLatLng(45.679722, -111.037778), icon, "Bozeman, USA"));
		map.addOverlay(createMarker(new GLatLng(43.073056, -89.401111), icon, "Madison, USA"));
		map.addOverlay(createMarker(new GLatLng(35.960556, -83.920833), icon, "Knoxville, USA"));
		map.addOverlay(createMarker(new GLatLng(40.585278, -105.083889), icon, "Fort Collins, USA"));
		map.addOverlay(createMarker(new GLatLng(42.736944, -84.483889), icon, "East Lansing, USA"));
		map.addOverlay(createMarker(new GLatLng(44.958189, -93.520581), icon, "Wayzata, USA"));
		map.addOverlay(createMarker(new GLatLng(32.312222, -106.777778), icon, "Las Cruces, USA"));
		map.addOverlay(createMarker(new GLatLng(40.486111, -74.452222), icon, "New Brunswick, USA"));
		map.addOverlay(createMarker(new GLatLng(40.585278, -105.083889), icon, "Fort Collins, USA"));
		map.addOverlay(createMarker(new GLatLng(36.747778, -119.771389), icon, "Fresno, USA"));
		map.addOverlay(createMarker(new GLatLng(44.564722, -123.260833), icon, "Corvallis, USA"));
		map.addOverlay(createMarker(new GLatLng(42.440556, -76.496944), icon, "Ithaca, USA")); 
		map.addOverlay(createMarker(new GLatLng(52.132633, 5.291266), icon, "Netherlands"));
		map.addOverlay(createMarker(new GLatLng(23.634501, -102.552784), icon, "Mexico"));
		map.addOverlay(createMarker(new GLatLng(31.378489, 34.975315), icon, "Israel"));
		map.addOverlay(createMarker(new GLatLng(11.916666666666666, -86.15), icon, "Masatepe, Nicaragua"));
		map.addOverlay(createMarker(new GLatLng(44.494759, 11.34173), icon, "Bologna, Italy"));
		map.addOverlay(createMarker(new GLatLng(9.022736, 38.746799), icon, "Addis Ababa, Ethiopia")); 
		map.addOverlay(createMarker(new GLatLng(-51.75672222222222, -59.029805555555555), icon, "Falkland Islands")); 
		map.addOverlay(createMarker(new GLatLng(-60.70883333333333, -45.592527777777775), icon, "Signy Islands")); 
		map.addOverlay(createMarker(new GLatLng(-60.70872222222222, -45.59561111111111), icon, "Rothera research station, Signy Islands")); 
		map.addOverlay(create3TabbedMarker(new GLatLng(51.594135, -117.354584), icon, "Study", "<b>Objective:&nbsp;</b><i>To assess soil displacement <br />and compaction effects on conifer seedlings<br /> and soil nutrients</i><table><td><b>Researcher: <a href='http://www.pfc.forestry.ca/profiles/maynard-d_e.html'>Doug Maynard</a></b><br />Natural Resources Canada<br />Canadian Forest Service<br />Victoria</td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src='images/doug.jpg' style='border: thin solid #000000; height: 90px;' /></td></table>", "Images", "<img src='images/Picture1.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture2.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture3.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture6.jpg' style='border: thin solid #000000; height: 50px;' /><br /><br /><img src='images/Picture13.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture15.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture16.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture17.jpg' style='border: thin solid #000000; height: 50px;' />&nbsp;&nbsp;<img src='images/Picture19.jpg' style='border: thin solid #000000; height: 50px;' /><br /><i><small><br />Sites located near Invermere, British Columbia, Canada.</small></i>", "Highlights", "<img src='images/doug_data.jpg' style='border: thin solid #000000; height: 90px;' />&nbsp;&nbsp;&nbsp;<img src='images/doug_data2.jpg' style='border: thin solid #000000; height: 90px;' /><br /><br /><i><small>There was a strong relationship between the PRS-probe<br />N supply rate and seedling N uptake and growth.</small></i>"));
//New ones
		map.addOverlay(createMarker(new GLatLng(21.30217,-157.834396), icon, "<b>Honolulu, HI</b><br>Development of native plant agroforestry system in a Hawaiian forest dominated<br>by non-native plants.")); 
		map.addOverlay(createMarker(new GLatLng(19.693674,-155.090436), icon, "<b>Hilo, HI</b>")); 
		map.addOverlay(createMarker(new GLatLng(43.347801,-89.379387), icon, "<b>Arlington, WI</b><br>Using anion exchange membranes as an alternative to chemical soil testing<br>to estimate plant available phosphorus in cranberry beds.")); 
		map.addOverlay(createMarker(new GLatLng(35.092552,-106.626549), icon, "<b>Albuquerque, NM</b><br>Effects of monsoon precipitation changes on plant community structure<br>and ecosystem processes in desert grassland")); 
		map.addOverlay(createMarker(new GLatLng(35.058835,-106.855202), icon, "<b>Albuquerque, NM</b><br>Effects of global warming on plant species that are near the edge of<br>their ranges")); 
		map.addOverlay(createMarker(new GLatLng(36.074412,-94.154381), icon, "<b>Fayetteville, AR</b><br>Organic apple management")); 
		map.addOverlay(createMarker(new GLatLng(38.492993,-78.849678), icon, "<b>Shenandoah Valley, Virginia USA</b><br>Invasibility of Galium verum as influenced by nutrient<br>resources and plant community biodiversity ")); 
		map.addOverlay(createMarker(new GLatLng(40.4883,-74.439855), icon, "<b>New Brunswick, NJ USA</b><br>Silicon in wheat in greenhouse ")); 
		map.addOverlay(createMarker(new GLatLng(40.731285,-104.725227), icon, "<b>Central Plains Experimental Range in northeastern Colorado</b><br>Shortgrass burn")); 
		map.addOverlay(createMarker(new GLatLng(44.57042,-123.275081), icon, "<b>Corvallis, OR</b><br>Organic fertilizer calculator for cover crops")); 
		map.addOverlay(createMarker(new GLatLng(40.553238,-105.06565), icon, "<b>Fort Collins, CO USA</b><br>Preliminary study for: Cattle impacts on N-dynamics in a Montane<br>riparian zone, Colorado.")); 
		map.addOverlay(createMarker(new GLatLng(42.750693,-84.461632), icon, "<b>East Lansing, MI, USA</b><br>The comparison of the incorporation of manure and various forage<br>rotations with potato production to conventional potato production.")); 
		map.addOverlay(createMarker(new GLatLng(39.093803,-78.060118), icon, "<b>Boyce, VA</b><br>Invasive plants; resource competition theory")); 
		map.addOverlay(createMarker(new GLatLng(39.508582,-119.899274), icon, "<b>Reno, NV USA</b><br>Facilitative role of N-fixing plant species for seedling establishment in<br>sagebrush steppe of the Sierra Nevadas")); 
		map.addOverlay(createMarker(new GLatLng(41.310861,-105.585762), icon, "<b>Laramie, WY</b><br>Prairie heating and CO2 enrichment")); 
		map.addOverlay(createMarker(new GLatLng(41.746367,-111.837502), icon, "<b>Logan, UT</b><br>Classification of the Upper Frost Canyon watershed")); 
		map.addOverlay(createMarker(new GLatLng(25.782766,-80.191383), icon, "<b>Miami, FL</b>")); 
		map.addOverlay(createMarker(new GLatLng(39.388105,-77.885667), icon, "<b>Kearneysville, West Virginia</b>")); 
		map.addOverlay(createMarker(new GLatLng(32.608898,-85.4813), icon, "<b>Auburn, AL</b><br>Conservation tillage and manure management for corn-soybean rotations")); 
		map.addOverlay(createMarker(new GLatLng(41.959133,-111.582069), icon, "<b>Franklin Basin, Logan, UT</b><br>Ecosystem Classification and Mapping of the Franklin Basin Watershed")); 
		map.addOverlay(createMarker(new GLatLng(37.88152,-122.268333), icon, "<b>Berkeley, CA</b><br>Effects of seasonality and intensity of rainfall in a California grassland")); 
		map.addOverlay(createMarker(new GLatLng(34.4354,-119.704399), icon, "<b>Santa Barbara, CA</b><br>Plants, microbes, and resource competition: Implications for exotic<br>annual dominance in California grasslands")); 
		map.addOverlay(createMarker(new GLatLng(35.208207,-111.650734), icon, "<b>Flagstaff, AZ</b><br>Effects of hydro-mow on pinyon-juniper ecosystem")); 
		map.addOverlay(createMarker(new GLatLng(21.449426,-157.996559), icon, "<b>Oahu, HI</b><br>Morinda citrofolia L. (Rubiaceae) growth and percentage incident solar radiatioin<br>in the understory of differing tree canopy species of an agrofestry system.")); 
		map.addOverlay(createMarker(new GLatLng(19.705498,-155.088615), icon, "<b>Hilo, HI</b><br>Silvicultural management of Acacia koa stands")); 
		map.addOverlay(createMarker(new GLatLng(21.292399,-157.821847), icon, "<b>Honolulu, HI</b><br>Koa productivity and nutrient use efficiency in response to fertilization")); 
		map.addOverlay(createMarker(new GLatLng(21.287647,-157.803612), icon, "<b>Honolulu, HI</b><br>Development of native plant agroforestry system in a Hawaiian forest dominated<br>by non-native plants.")); 
		map.addOverlay(createMarker(new GLatLng(21.288501,-157.843262), icon, "<b>Honolulu, HI</b><br>Transition strategies for organic farms.")); 
		map.addOverlay(createMarker(new GLatLng(44.569747,-123.270725), icon, "<b>Corvallis, OR</b><br>Wheat yield benefit due to pea intercropping.")); 
		map.addOverlay(createMarker(new GLatLng(44.569243,-123.287805), icon, "<b>Corvallis, OR</b><br>Organic fertilizer calculator for cover crops.")); 
		map.addOverlay(createMarker(new GLatLng(43.589177,-119.054013), icon, "<b>Burns, OR</b><br>Debris Burn Study.")); 
		map.addOverlay(createMarker(new GLatLng(40.55058,-105.066358), icon, "<b>Fort Collins, CO</b><br>Shortgrass burn.")); 
		map.addOverlay(createMarker(new GLatLng(40.485544,-74.441775), icon, "<b>New Brunswick, NJ</b><br>Silicon in wheat in greenhouse.")); 
		map.addOverlay(createMarker(new GLatLng(46.734355,-117.172737), icon, "<b>Pullman, WA</b><br>Soil samples and Forecaster Landscape study.")); 
		map.addOverlay(createMarker(new GLatLng(39.093537,-78.059324), icon, "<b>Boyce, VA</b><br>Invasibility of Galium verum as influenced by nutrient resources and<br>plant community biodiversity.")); 
		map.addOverlay(createMarker(new GLatLng(43.346303,-89.375267), icon, "<b>Arlington, WI</b><br>Using anion exchange membranes as an alternative to chemical soil<br>testing to estimate plant available phosphorus in cranberry beds.")); 
		map.addOverlay(createMarker(new GLatLng(32.333733,-106.975365), icon, "<b>Las Cruces, NM</b><br>WATOPIA Experiment. The effect of less frequent and larger rainfalls<br>in the Chihuahuan Desert of SW U.S. on N availability and vegetation dominance.")); 
		map.addOverlay(createMarker(new GLatLng(42.747163,-84.498024), icon, "<b>East Lansing, MI</b><br>Soil texture interactions with manure management to influence<br>nitrogen availability and soil quality in a potato system.")); 
		map.addOverlay(createMarker(new GLatLng(42.572956,-114.454994), icon, "<b>Twin Falls, ID</b><br>Application of ion exchange resin membranes and a nutrient forecasting<br>model to determine fertilizer recommendations in the Magic Valley.")); 
		map.addOverlay(createMarker(new GLatLng(44.982431,-93.515739), icon, "<b>Wayzata, MN</b>")); 
		map.addOverlay(createMarker(new GLatLng(42.45148,-85.375557), icon, "<b>Hickory Corners, MI</b><br>The comparison of the incorporation of manure and various forage<br>rotations with potato production to conventional potato production.")); 
		map.addOverlay(createMarker(new GLatLng(40.256417,-111.657407), icon, "<b>Provo, UT</b><br>Effects of soil type and precipitation regime on grassland responses<br>to increasing CO2.")); 
		map.addOverlay(createMarker(new GLatLng(40.259774,-111.667213), icon, "<b>Provo, UT</b><br>CO2 and N effects on plant decomposition")); 
		map.addOverlay(createMarker(new GLatLng(36.233917,-115.243263), icon, "<b>Las Vegas, NV</b><br>Arctomecon californica habitat requirements in N")); 
		map.addOverlay(createMarker(new GLatLng(30.480811,-91.128273), icon, "<b>Baton Rouge, LA</b>")); 
		map.addOverlay(createMarker(new GLatLng(35.790136,-78.647118), icon, "<b>Raleigh, NC</b><br>Forest silviculture treatments.")); 
		map.addOverlay(createMarker(new GLatLng(45.689058,-111.045113), icon, "<b>Bozeman, MT</b>")); 
		map.addOverlay(createMarker(new GLatLng(40.577183,-105.069083), icon, "<b>Fort Collins, CO</b><br>N cycling around prairie dog colony.")); 
		map.addOverlay(createMarker(new GLatLng(77.526281,-69.257927), icon, "<b>Thule, Greenland</b><br>Interactions between carbon cycling and water availability in high arctic tundra.")); 
		map.addOverlay(createMarker(new GLatLng(51.933386,-106.280479), icon, "<b>Clavet, SK Canada</b><br>Cargill Limited.")); 
		map.addOverlay(createMarker(new GLatLng(63.515592,-132.099037), icon, "<b>Yukon Canada</b><br>Establishment of Alfalfa into Existing Grass Hay Stands in the Yukon Territory.")); 
		map.addOverlay(createMarker(new GLatLng(46.621761,-72.693214), icon, "<b>Grand-Mere, QC Canada</b><br>N & P fertilization of potato in Quebec.")); 
		map.addOverlay(createMarker(new GLatLng(45.36789,-63.29224), icon, "<b>Truro, NS Canada</b><br>Transition strategies for organic farms.")); 
		map.addOverlay(createMarker(new GLatLng(52.194266,-106.743279), icon, "<b>Saskatoon, SK Canada</b><br>On-farm evaluation of potassium chloride using combine yield monitors.")); 
		map.addOverlay(createMarker(new GLatLng(48.249049,-79.027519), icon, "<b>Rouyn-Noranda, QC Canada</b><br>The effect of cover type on nutrient availability and jack pine growth.")); 
		map.addOverlay(createMarker(new GLatLng(46.751437,-71.292969), icon, "<b>Sainte-Foy, QC Canada</b><br>Effect of Fertilization and Crop Rotation on Soil Properties.")); 
		map.addOverlay(createMarker(new GLatLng(52.354341,-112.704048), icon, "<b>Stettler, AB Canada</b><br>Nutrient supplying power of manured soils on a perennial Timothy stand.")); 
		map.addOverlay(createMarker(new GLatLng(49.858482,-99.969521), icon, "<b>Brandon, MB Canada</b><br>Malt barley tillage study.")); 
		map.addOverlay(createMarker(new GLatLng(50.539312,-103.667793), icon, "<b>Indian Head, SK Canada</b><br>Optimizing field nitrogen rates for oats and canaryseed in<br>East Central Saskatchewan.")); 
		map.addOverlay(createMarker(new GLatLng(50.968503,-113.994255), icon, "<b>Calgary, AB Canada</b><br>Isotope analyzes on sulphate, nitrate, and ammonium.")); 
		map.addOverlay(createMarker(new GLatLng(50.284206,-107.797279), icon, "<b>Swift Current, SK Canada</b><br>Assessing nitrogen mineralization in a no-tillage rotation in<br>South-Western Saskatchewan.")); 
		map.addOverlay(createMarker(new GLatLng(53.339196,-113.750496), icon, "<b>Alberta Canada</b><br>PRS for soil quality in Canada.")); 
		map.addOverlay(createMarker(new GLatLng(45.901621,-66.711159), icon, "<b>Fredericton, NB Canada</b><br>Measuring N mineralization in bare soil plots in New Brunswick.")); 
		map.addOverlay(createMarker(new GLatLng(49.829257,-99.850044), icon, "<b>Brandon, MB Canada</b><br>Effect of integrated management practices on crop and soil nutrient dynamics.")); 
		map.addOverlay(createMarker(new GLatLng(49.765433,-99.928322), icon, "<b>Brandon, MB Canada</b><br>The impact of Sulfur fertilizer forms on soil nutrient supply rate.")); 
		map.addOverlay(createMarker(new GLatLng(49.276451,-123.097801), icon, "<b>Vancouver, BC Canada</b><br>Preliminary trial of PRS-probes for use as a standard measure of<br>nutrient availability at all Fluxnet-Canada sites.")); 
		map.addOverlay(createMarker(new GLatLng(49.293023,-123.163719), icon, "<b>Vancouver, BC Canada</b><br>EMEND: Ecosystem Management by Emulating Natural Disturbance.")); 
		map.addOverlay(createMarker(new GLatLng(45.313674,-73.26725), icon, "<b>Saint-Jean-sur-Richelieu, QC Canada</b><br>The impact of green manures and the stale seedbed<br>technique on weed emergence, composition and control in organically<br>grown vegetable crops.")); 
		map.addOverlay(createMarker(new GLatLng(46.026195,-77.450295), icon, "<b>Laurentian Hills, ON, Canada</b><br>Measuring nutrient availability in partially harvested white pine stands.")); 
		map.addOverlay(createMarker(new GLatLng(49.903613,-97.139168), icon, "<b>Winnipeg, MB Canada</b><br>Effect of foliar-applied monopotassium phosphate on high yielding<br>canola and wheat grown in southern Manitoba.")); 
		map.addOverlay(createMarker(new GLatLng(50.544112,-101.839943), icon, "<b>Tantallon, SK Canada</b><br>Soil NH4 when amended with broiler manure.")); 
		map.addOverlay(createMarker(new GLatLng(43.548273,-80.25071), icon, "<b>Guelph, ON Canada</b>")); 
		map.addOverlay(createMarker(new GLatLng(45.365192,-63.279816), icon, "<b>Truro, NS Canada</b><br>Use of PRS probes in Organic Forage/Potato Rotation<br>(Greenhouse Gas Study).")); 
		map.addOverlay(createMarker(new GLatLng(45.36979,-63.268894), icon, "<b>Truro, NS Canada</b><br>N dynamics under mulched organic highbush blueberries.")); 
		map.addOverlay(createMarker(new GLatLng(45.353371,-63.271576), icon, "<b>Truro, NS Canada</b><br>Enhancing the effectiveness of phosphate rocks using buckwheat as a green manure crop.")); 
		map.addOverlay(createMarker(new GLatLng(45.352934,-63.28679), icon, "<b>Truro, NS Canada</b><br>Organic fertilization of potato in the Maritimes.")); 
		map.addOverlay(createMarker(new GLatLng(50.465066,-117.244835), icon, "<b>South East British Columbia Canada</b><br>The effect of soil displacement and compaction on soil nutrients<br>as it relates to the growth of Douglas-Fir and Lodgepole Pine seedlings.")); 
		map.addOverlay(createMarker(new GLatLng(49.235669,-123.204918), icon, "<b>Vancouver, BC Canada</b><br>Potential of Forest Fertilization to Alleviate Effects of<br>Climate Change-induced Insect Infestation.")); 
		map.addOverlay(createMarker(new GLatLng(49.222217,-123.123207), icon, "<b>Vancouver, BC Canada</b><br>Montane Alternative Silvicultural Systems (MASS):<br>growth limitations on regeneration.")); 
		map.addOverlay(createMarker(new GLatLng(48.406551,-72.200203), icon, "<b>Saguenay-Lac-St-Jean, QC Canada</b><br>Use of PRS probes for hybrid poplar research.")); 
		map.addOverlay(createMarker(new GLatLng(46.751451,-71.309448), icon, "<b>Sainte-Foy, QC Canada</b><br>The effect of different site preparation techniques on nutrient dynamics.")); 
		map.addOverlay(createMarker(new GLatLng(49.703301,-112.822151), icon, "<b>Lethbridge, AB Canada</b><br>Developing the PRS forecaster for potato, corn and alfalfa silage.")); 
		map.addOverlay(createMarker(new GLatLng(49.703301,-112.822151), icon, "<b>Schefferville, QC Canada</b><br>Biotic and abiotic determinants of the nutrient cycle in treeline<br>environments vs less extreme environments.")); 
		map.addOverlay(createMarker(new GLatLng(54.811489,-66.834755), icon, "<b>Schefferville, QC Canada</b><br>Biotic and abiotic determinants of the nutrient cycle in treeline<br>environments vs less extreme environments.")); 
		map.addOverlay(createMarker(new GLatLng(45.554593,-73.638725), icon, "<b>Montreal, QC Canada</b><br>Determining the relationship between fertilization and poplar productivity in southern Quebec.")); 
		map.addOverlay(createMarker(new GLatLng(51.462692,-106.348457), icon, "<b>Saskatoon, SK Canada</b><br>Understanding boron supply and availability in Saskatchewan soils.")); 
		map.addOverlay(createMarker(new GLatLng(50.802593,-106.511879), icon, "<b>Central Butte, SK Canada</b><br>Investigating new tools to efficiently manage potato fertility.")); 
		map.addOverlay(createMarker(new GLatLng(64.870028,-111.583443), icon, "<b>Daring Lake region, NWT Canada</b><br>International Tundra Experiment (ITEX) - species, community and ecosystem.")); 
		map.addOverlay(createMarker(new GLatLng(80.752376,-72.666435), icon, "<b>Ellesmere Island, Nunavut, Canada</b><br>Musk Ox Grazing on Ellesmere Island.")); 
		map.addOverlay(createMarker(new GLatLng(80.255867,-73.959389), icon, "<b>Alexandra Fiord Lowland, Ellesmere Island, Nunavut, Canada</b><br>Effects of long-term experimental warming on N availability in high arctic tundra.")); 
		map.addOverlay(createMarker(new GLatLng(58.787527,-94.185905), icon, "<b>Churchill, MB Canada</b><br>International Tundra Experiment (ITEX).")); 
		map.addOverlay(createMarker(new GLatLng(49.489672,-119.584236), icon, "<b>Penticton, BC Canada</b><br>Influence of harvesting on nitrogen in soil, soil water, and streams at Penticton Creek.")); 
		map.addOverlay(createMarker(new GLatLng(50.684408,-120.338173), icon, "<b>Kamloops, BC Canada</b><br>Managing Complex, Dry Interior Douglas-fir Forests.")); 
		map.addOverlay(createMarker(new GLatLng(46.756847,-71.294578), icon, "<b>Sainte-Foy, QC Canada</b><br>Preliminary trial of PRS-probes for use as a standard measure of<br>nutrient availability at all Fluxnet-Canada sites.")); 
		map.addOverlay(createMarker(new GLatLng(43.548697,-80.262795), icon, "<b>Guelph, ON Canada</b><br>N nutrition of corn.")); 
		map.addOverlay(createMarker(new GLatLng(59.312976,-115.401192), icon, "<b>Alberta, Canada</b><br>Preliminary trial of PRS-probes for assessing nutrient availability in<br>black spruce fen/shallow peat/upland transitional zones.")); 
		map.addOverlay(createMarker(new GLatLng(46.756994,-71.276532), icon, "<b>Sainte-Foy, QC Canada</b><br>Short-term effects of harvesting and regeneration of eastern white<br>cedar in mixedwood stands on soil nutrient availability.")); 
		map.addOverlay(createMarker(new GLatLng(53.042163,-78.178139), icon, "<b>James Bay Region, QC Canada</b><br>The effects of the potential climatic changes on suitability<br>of post-disturbance sites for Populus tremuloides Michx.<br>and Picea mariana (Miller) BSP along the transitional mixedwood-boreal<br>region of James Bay, northwestern Quebec.")); 
		map.addOverlay(createMarker(new GLatLng(45.408237,-73.949089), icon, "<b>Sainte-Ann-De-Bellevue, QC Canada</b><br>Preliminary trial of PRS-probes for assessing soil chemistry<br>differences between open coastal dunes and those invaded by<br>exotic plant species.")); 
		map.addOverlay(createMarker(new GLatLng(53.466101,-59.046822), icon, "<b>Mealy Mountains, Labrador Canada</b><br>Relationships between soil and climate change in the<br>Mealy Mountains of Labrador.")); 
		map.addOverlay(createMarker(new GLatLng(47.578054,-52.702217), icon, "<b>St John's, NL Canada</b><br>Seed bank viability along an elevational gradient as effected by soil fertility.")); 
		map.addOverlay(createMarker(new GLatLng(45.438116,-75.610085), icon, "<b>Ottawa, ON, Canada</b>")); 
		map.addOverlay(createMarker(new GLatLng(46.312458,-84.592781), icon, "<b>Sault Ste. Marie, ON Canada</b><br>Preliminary trial of PRS-probes for use as a standard measure of<br>nutrient availability at all Fluxnet-Canada sites.")); 
		map.addOverlay(createMarker(new GLatLng(48.464408,-123.352547), icon, "<b>Garry Oak Pl Victoria, BC, Canada</b><br>Scotch broom (Cytisus scoparius) and the Garry Oak Ecosystem:<br>unraveling the relationship between broom and soil nitrogen.")); 
		map.addOverlay(createMarker(new GLatLng(46.334271,-64.654655), icon, "<b>New Brunswick, Canada</b><br>Management of an organic snap bean rotational system using<br>mechanical weeding and composted manure:<br>effects on yield, weed pressure and soil properties.")); 
		map.addOverlay(createMarker(new GLatLng(54.696178,-127.050133), icon, "<b>Telkwa, BC Canada</b><br>The effect of different site preparation techniques on nutrient dynamics.")); 
		map.addOverlay(createMarker(new GLatLng(56.315889,-115.223351), icon, "<b>Boreal Plain, AB Canada</b><br>Using PRS-Probes to Identify Hot Spots in Nutrient Release in the Boreal Forest System<br>of Northern Alberta.")); 
		map.addOverlay(createMarker(new GLatLng(45.96084,-66.641121), icon, "<b>Fredericton, NB Canada</b><br>The Forest Indicators of Global Climate Change Project.")); 
		map.addOverlay(createMarker(new GLatLng(49.263906,-123.138313), icon, "<b>Vancouver, BC Canada</b><br>Comparing soil nutrient and microbial communities in gaps and adjacent forests in<br>coastal British Columbia.")); 
		map.addOverlay(createMarker(new GLatLng(50.679187,-120.453529), icon, "<b>Kamloops, BC Canada</b><br>Nutrient availability in three BC grasslands with different levels of productivity<br>with and without grazing.")); 
		map.addOverlay(createMarker(new GLatLng(45.622826,-61.991158), icon, "<b>Antigonish, NS Canada</b><br>Measuring net N mineralization in undisturbed and harvested forest sites.")); 
		map.addOverlay(createMarker(new GLatLng(53.500423,-112.067528), icon, "<b>Vegreville, AB Canada</b><br>Mineralization under crop and fallow.")); 
		map.addOverlay(createMarker(new GLatLng(57.136351,-117.508507), icon, "<b>Boreal Forest, AB Canada</b><br>Competitive effects of woody and herbaceous vegetation in a young boreal mixed stand.")); 
		map.addOverlay(createMarker(new GLatLng(49.724612,-117.069054), icon, "<b>Burton Creek, BC Canada</b><br>Growth of 10 tree species in relation to location and microclimate gradients in a strip shelterwood.")); 
		map.addOverlay(createMarker(new GLatLng(46.75667,-71.294514), icon, "<b>Sainte-Foy, QC Canada</b><br>Assessing the suitability of PRS-probes as a reliable methodology to assess soil fertility<br>following forest operations.")); 
		map.addOverlay(createMarker(new GLatLng(58.743376,-94.278603), icon, "<b>Churchill, MB Canada</b><br>The effects of microclimate on white spruce seedling survival and vigor along a tundra treeline.")); 
		map.addOverlay(createMarker(new GLatLng(57.095678,-75.549317), icon, "<b>Quebec, Canada</b><br>The effects of cuts and burns in black spruce forests in the southern Hudson's Bay<br>(Selbaie) region of Quebec.")); 
		map.addOverlay(createMarker(new GLatLng(50.284206,-125.443382), icon, "<b>Elk Bay Comox-Strathcona, BC, Canada</b><br>Pre and post-harvest effects of logging on soil microbes<br>(AKA \"Green-tree retention project 3rd replicate\").")); 
		map.addOverlay(createMarker(new GLatLng(52.786278,-108.297844), icon, "<b>North Battleford, SK Canada</b><br>Effect of fall tillage on nitrogen mineralization.")); 
		map.addOverlay(createMarker(new GLatLng(52.363986,-108.825874), icon, "<b>Scott, SK Canada</b><br>Glyphosate Field Study.")); 
		map.addOverlay(createMarker(new GLatLng(53.377717,-59.451942), icon, "<b>Mealy Mountains, LB Canada</b><br>Quantifying and differentiating nutrient availability in potential seed beds in alpine and tundra ecosystems of Labrador.")); 
		map.addOverlay(createMarker(new GLatLng(49.297949,-121.815147), icon, "<b>Vancouver, BC Canada</b><br>Quantifying and differentiating nutrient availability in potential seed beds in alpine and tundra ecosystems of Labrador.")); 
		map.addOverlay(createMarker(new GLatLng(53.52533,-113.523903), icon, "<b>University of Alberta, Edmonton, AB, Canada</b><br>Land Reclamation and Nutrient Availability (Incubation Study).")); 
		map.addOverlay(createMarker(new GLatLng(49.137384,-107.460136), icon, "<b>Grasslands National Park, SK Canada</b><br>Differences between native prairie and Bromus inermis Leyss.<br>(Smooth brome) invaded sites.")); 
		map.addOverlay(createMarker(new GLatLng(50.457635,-113.109856), icon, "<b>Vulcan County, AB Canada</b><br>Prelimary investigations merging a Soil Foodweb biology assessment protocol with the Plant<br>Root Simulator fertility assessment protocol.")); 
		map.addOverlay(createMarker(new GLatLng(40.624533,22.973671), icon, "<b>Salonika, Greece</b><br>P supply rates in Thessoliniki soils.")); 
		map.addOverlay(createMarker(new GLatLng(40.551531,23.413124), icon, "<b>Greece</b><br>Comparison of nutrient supply rates to conventional soil tests in wheat,<br>corn and cotton in Greece.")); 
		map.addOverlay(createMarker(new GLatLng(51.585305,-111.517525), icon, "<b>Stanmore, Special Area No. 2, AB, Canada</b><br>Stanmore Crop Rotation Study.")); 
		map.addOverlay(createMarker(new GLatLng(51.642013,-121.273384), icon, "<b>100 Mile House, AB Canada</b><br>High Elevation Alpine Ecosystem productivity and Biogeochemistry classification.")); 
		map.addOverlay(createMarker(new GLatLng(45.479055,-75.701408), icon, "<b>Gatineau, QC Canada</b><br>Assessing the effect of human disturbance on Cypripedium parviflorum<br>var. pubescensand the soil community.")); 
		map.addOverlay(createMarker(new GLatLng(53.918321,-122.733425), icon, "<b>Prince George, BC Canada</b><br>Determining the role of soil nutrients on the distribution of epiphytic<br>cyanolichens in interior sub-boreal spruce forests of British Columbia.")); 
		map.addOverlay(createMarker(new GLatLng(48.809712,-123.627205), icon, "<b>Cowichan Garry Oak Preserve, BC Canada</b><br>Population Dynamics of Prairie Violet on the Cowichan Garry Oak Reserve:<br>Implications for Restoration and Recovery.")); 
		map.addOverlay(createMarker(new GLatLng(45.364845,-63.254496), icon, "<b>Truro, NS Canada</b><br>Transition strategies for organic farms.")); 
		map.addOverlay(createMarker(new GLatLng(60.721,-135.050926), icon, "<b>Whitehorse, YT Canada</b><br>Establishment of Alfalfa into Existing Grass Hay Stands in the Yukon Territory.")); 
		map.addOverlay(createMarker(new GLatLng(48.429337,-123.365593), icon, "<b>Victoria, BC Canada</b><br>An investigation of soil corrosive characteristics through the use of<br>remote sensing techniques.")); 
		map.addOverlay(createMarker(new GLatLng(45.605535,-73.013878), icon, "<b>Saint-Hyacinthe QC, Canada</b><br>N management of corn.")); 
		map.addOverlay(createMarker(new GLatLng(45.399559,-71.917305), icon, "<b>Sherbrooke, QC Canada</b><br>PRS probes for predicting plant productivity across a wide soil gradient.")); 
		map.addOverlay(createMarker(new GLatLng(49.691777,-112.824014), icon, "<b>Lethbridge, AB Canada</b><br>Effect of crop residue on sugar beet yield and sugar quality.")); 
		map.addOverlay(createMarker(new GLatLng(45.396666,-75.466576), icon, "<b>Mer Bleue - Eastern Peatland, ON Canada</b><br>Drainage as a model for long term climate change effect on vegetation dynamics<br>and carbon sequestration in boreal peatlands.")); 
		map.addOverlay(createMarker(new GLatLng(49.241049,-107.734108), icon, "<b>Val Marie, SK</b><br>Smooth Brome Competition Experiment.")); 
		map.addOverlay(createMarker(new GLatLng(67.51109,-136.915284), icon, "<b>Northern Yukon, Canada</b><br>N mineralization in Burned and Unburned Forest Soils.")); 
		map.addOverlay(createMarker(new GLatLng(61.48069,-138.032155), icon, "<b>Ruby Range, Yukon Territory, Canada </b><br>Influence of fungal endophyte infection on the herbivore-plant<br>interaction of native populations in an alpine tundra ecosystem.")); 
		map.addOverlay(createMarker(new GLatLng(49.786274,-112.147179), icon, "<b>Taber, AB Canada</b><br>The effect of zone tillage on spring soil temperature and sugar beet production.")); 
		map.addOverlay(createMarker(new GLatLng(52.182479,-106.192589), icon, "<b>St. Denis National Wildlife area, SK Canada</b><br>N availability as measured by gross mineralization/nitrification versus PRS probes.")); 
		map.addOverlay(createMarker(new GLatLng(48.51947,-72.224922), icon, "<b>Roberval, QC Canad</b><br>Use of PRS probes for hybrid poplar research.")); 
		map.addOverlay(createMarker(new GLatLng(45.539686,-73.593407), icon, "<b>Montreal, QC Canada</b><br>Hybrid poplar river edge strips for the control of non-point<br>source agricultural pollution by excess nutrients.")); 
		map.addOverlay(createMarker(new GLatLng(54.718791,-112.647743), icon, "<b>Al-Pac mill site, Alberta, Canada</b><br>Hybrid poplar river edge strips for the control of non-point<br>source agricultural pollution by excess nutrients.")); 
		map.addOverlay(createMarker(new GLatLng(53.905673,-122.760658), icon, "<b>Prince George, BC Canada</b><br>Determinants of change in dominant ground cover after Mountain Pine Beetle infestation with implications for caribou range management.")); 
		map.addOverlay(createMarker(new GLatLng(52.583568,-112.070274), icon, "<b>Forestburg, AB Canada</b><br>Daysland Peas and Alfalfa Rotatio.")); 
		map.addOverlay(createMarker(new GLatLng(51.85669,-106.651955), icon, "<b>SE of Saskatoon, SK Canada</b><br>Nitrogen cycling in pure and mixed willow/caragana plantations.")); 
		map.addOverlay(createMarker(new GLatLng(56.732125,-111.448174), icon, "<b>Fort McMurray, AB Canada</b><br>Comparing supply rates in LFH to supply rates of peat:<br>mineral mixtures in reclaimed soil in northern Alberta.")); 
		map.addOverlay(createMarker(new GLatLng(75.500364,-111.499271), icon, "<b>Melville Island, NWT Canada</b><br>Cape Bounty - Relationships between vegetation community type,<br>seasonal soil moisture and soil nutrients.")); 
		map.addOverlay(createMarker(new GLatLng(75.331732,-111.008034), icon, "<b>Melville Island, NWT Canada</b><br>Enhanced moisture and disturbance effects on available nutrient<br>pools in a high-arctic ecosystem.")); 
		map.addOverlay(createMarker(new GLatLng(50.448454,-104.618797), icon, "<b>Regina, SK Canada</b><br>Within season variation in the intensity or competition in four plant species.")); 
		map.addOverlay(createMarker(new GLatLng(49.074451,-123.854485), icon, "<b>Georgia Basin, BC Canada</b><br>Georgia Basin: Alpine lakes.")); 
		map.addOverlay(createMarker(new GLatLng(49.074451,-123.854485), icon, "<b>Georgia Basin, BC Canada</b><br>Georgia Basin: Alpine lakes.")); 
		map.addOverlay(createMarker(new GLatLng(53.062386,-7.788734), icon, "<b>Ireland</b><br>Hydrochemisty in Irish lakes and forest systems.")); 
		map.addOverlay(createMarker(new GLatLng(55.739598,-117.202263), icon, "<b>Falher, AB Canada</b><br>Pulse Crops and Crop Rotation Benefits for a Cereal Crop.")); 
		map.addOverlay(createMarker(new GLatLng(-37.828063,140.778694), icon, "<b>Mount Gambier, SA Australia</b>")); 
		map.addOverlay(createMarker(new GLatLng(-34.959515,138.647346), icon, "<b>Glen Osmond, SA Australia</b>")); 
		map.addOverlay(createMarker(new GLatLng(-19.70511,145.773354), icon, "<b>Queensland Australia</b>")); 
		map.addOverlay(createMarker(new GLatLng(78.917732,11.923639), icon, "<b>Ny-Alesund, Svalbard</b><br>Effect of goose grazing on nutrient cycles.")); 
		map.addOverlay(createMarker(new GLatLng(78.170624,16.082497), icon, "<b>Adventdalen, Svalbard</b><br>Effect of goose grazing on nutrient cycles.")); 
		map.addOverlay(createMarker(new GLatLng(51.221637,4.400597), icon, "<b>Antwerp, Belgium</b><br>Fen Ecosystems.")); 
		map.addOverlay(createMarker(new GLatLng(-36.861329,-72.255821), icon, "<b>Casilla, Chillan, Chile</b>")); 
		map.addOverlay(createMarker(new GLatLng(9.012793,38.760338), icon, "<b>Addis Ababa, Ethiopia</b>")); 
		map.addOverlay(createMarker(new GLatLng(48.114446,-1.681023), icon, "<b>Rennes, France</b><br>Willow as a bio-filter")); 
		map.addOverlay(createMarker(new GLatLng(68.351177,18.831139), icon, "<b>Abisko, Kiruna, Sweden</b><br>Feedbacks between hydrological and nutritional changes as induced by permafrost<br>melting, and ecosystem functioning.")); 
		map.addOverlay(createMarker(new GLatLng(52.665681,-8.627815), icon, "<b>Limerick, Co. Limerick Ireland</b><br>Investigation of Fungal Diversity in Irish Forest and Afforested Habitats.")); 
		map.addOverlay(createMarker(new GLatLng(33.211289,35.569496), icon, "<b>Kiryat Shmona, Israel</b><br>Soil P availability in an Alpine ecosystem.")); 
		map.addOverlay(createMarker(new GLatLng(44.494693,11.348076), icon, "<b>Bologna, Italy</b>")); 
		map.addOverlay(createMarker(new GLatLng(27.395302,-109.834671), icon, "<b>Ciudad Obregon, Mexico</b><br>PRS-plant available nitrogen comparing zero tillage and conventional tilllage<br>with different residue management")); 
		map.addOverlay(createMarker(new GLatLng(18.468733,-66.117897), icon, "<b>San Juan, Puerto Rico</b>")); 
		map.addOverlay(createMarker(new GLatLng(-43.532969,172.637672), icon, "<b>Christchurch, New Zealand</b>")); 
		map.addOverlay(createMarker(new GLatLng(60.702189,10.866737), icon, "<b>Apelsvoll, Norway</b><br>Longevity of White Clover  Leaves, Stolons and Roots and the consequences for<br>Nitrogen Dynamics under Northern Climatic Conditions")); 
		map.addOverlay(createMarker(new GLatLng(59.665417,10.79464), icon, "<b>As, Norway</b>")); 
		map.addOverlay(createMarker(new GLatLng(59.490528,10.195885), icon, "<b>Aas, Norway</b><br>Impact of different grazing intensities of sheep on soil physical and biogeochemical processes;<br>effects on cycling and availability of nutrients")); 
		map.addOverlay(createMarker(new GLatLng(31.420636,73.076134), icon, "<b>Faisalabad, Pakistan</b>")); 
		map.addOverlay(createMarker(new GLatLng(18.204762,-67.137566), icon, "<b>Mayaguez, Puerto Rico</b>")); 
		map.addOverlay(createMarker(new GLatLng(40.028824,-6.087227), icon, "<b>Plasencia, Spain</b><br>Plant to plant competition for nutrients in an Iberian Oak savanna (dehesas).")); 
		map.addOverlay(createMarker(new GLatLng(47.35385,8.438072), icon, "<b>Birmensdorf, Switzerland</b><br>Effects of wild boars on ecosystem processes in deciduous forests.")); 
		map.addOverlay(createMarker(new GLatLng(33.886548,10.092201), icon, "<b>Gabes, Tunisia</b>")); 
		map.addOverlay(createMarker(new GLatLng(53.261229,-1.913109), icon, "<b>Buxton, Derbyshire UK</b><br>Impacts of climate change on calcareous grassland.")); 
		map.addOverlay(createMarker(new GLatLng(18.123861,-76.677818), icon, "<b>Blue Mountains, Jamaica</b><br>N mineralization rates in tropical montane forests of Jamaica.")); 
		map.addOverlay(createMarker(new GLatLng(-22.722167,-47.647133), icon, "<b>Centro - SP, Brazil</b>")); 
		map.addOverlay(createMarker(new GLatLng(-51.861101,-59.182777), icon, "<b>Falkland Islands</b>")); 
		map.addOverlay(createMarker(new GLatLng(-60.714418,-45.599556), icon, "<b>Signy Island</b>")); 
		map.addOverlay(createMarker(new GLatLng(42.546656,-114.367104), icon, "<b>Kimberly, ID</b><br>Composted dairy manure mineralization.")); 
		map.addOverlay(createMarker(new GLatLng(36.075354,-94.152946), icon, "<b>Fayetteville, AR</b><br>Rotational grazing on land receiving manure applications:<br>Impacts of land management practices on soil and water quality.")); 
		map.addOverlay(createMarker(new GLatLng(43.786611,-116.944084), icon, "<b>Parma, ID</b>")); 
		map.addOverlay(createMarker(new GLatLng(38.943549,-95.259819), icon, "<b>Lawrence, KS</b><br>Grassland ecology.")); 
		map.addOverlay(createMarker(new GLatLng(42.44692,-76.499977), icon, "<b>Ithaca, NY</b>")); 
		map.addOverlay(createMarker(new GLatLng(38.696925,-122.017021), icon, "<b>Esparto, CA</b>")); 
		map.addOverlay(createMarker(new GLatLng(40.567192,-105.077044), icon, "<b>Fort Collins, CO</b><br>Invasion of Bromus tectorum into ponderosa pine ecosystems.")); 
		map.addOverlay(createMarker(new GLatLng(41.228527,-105.842729), icon, "<b>USDA-ARS High Plains Grassland Research Stations WY156, WY</b><br>Carbon addition interacts with water availability to reduce invasive<br>forb establishment in a semi-arid grassland.")); 
		map.addOverlay(createMarker(new GLatLng(40.617236,-105.6007), icon, "<b>Fort Collins, CO</b><br>Determine the shape of invasive plant responses to cattle disturbance, and construct hypotheses<br>regarding the resources that may be proximate causes of successional plant invasion.")); 
		map.addOverlay(createMarker(new GLatLng(36.745102,-119.78817), icon, "<b>Fresno, CA</b>")); 
		map.addOverlay(createMarker(new GLatLng(35.967059,-83.926048), icon, "<b>Knoxville, TN</b>")); 
		map.addOverlay(createMarker(new GLatLng(35.033539,-97.778435), icon, "<b>Kessler Farm Field lab, McClain County, OK</b><br>Lagged Effects of warming and precipitation on on annual and seasonal aboveground<br>biomass production in a tallgrass prairie.")); 
		map.addOverlay(createMarker(new GLatLng(39.534392,-119.814262), icon, "<b>Reno, NV</b><br>The effects of Glycine max and Helianthus annuus availability in two soils.")); 
		map.addOverlay(createMarker(new GLatLng(38.764953,-119.994164), icon, "<b>Humboldt-Toiyabe National Forest, CA</b><br>Carson Ranger District of the Humboldt-Toiyabe National Forest. Grassland restoration: looking how frequent burns can reduce cheatgrass invasion - Cheatgrass fire project.")); 
		map.addOverlay(createMarker(new GLatLng(39.799727,-119.25602), icon, "<b>Little Valley, NV</b><br>The effects of slash pile burning on soils and water quality.")); 
		map.addOverlay(createMarker(new GLatLng(38.808039,-116.380005), icon, "<b>Nevada, Utah and Oregon</b><br>Sagebrush Treatment Evaluation.")); 
		map.addOverlay(createMarker(new GLatLng(31.773885,-84.447212), icon, "<b>Dawson, GA</b><br>Tillage and irrigation in corn and peanuts.")); 
		map.addOverlay(createMarker(new GLatLng(33.46026,-88.826637), icon, "<b>Starkville, MS</b><br>Poultry litter leaching.")); 
		map.addOverlay(createMarker(new GLatLng(44.305326,-96.788292), icon, "<b>Brookings, SD</b>")); 
		map.addOverlay(createMarker(new GLatLng(38.037788,-78.48925), icon, "<b>Charlottesville, VA</b><br>Soil resources distribution in a mixed grass/shrub desert ecosystem.")); 
		map.addOverlay(createMarker(new GLatLng(36.681251,-121.655846), icon, "<b>Salinas, CA</b><br>USA Nitrate leaching in strawberries.")); 
		map.addOverlay(createMarker(new GLatLng(38.038413,-78.49631), icon, "<b>Charlottesville, VA</b><br>Determinant factors of plant and soil N15 variation during secondary succession.")); 
		map.addOverlay(createMarker(new GLatLng(40.567225,-105.076979), icon, "<b>Fort Collins, CO</b><br>The effects of high density long-term cattle grazing on N<br>availability in shortgrass steppe soils.")); 
		map.addOverlay(createMarker(new GLatLng(46.800108,102.788061), icon, "<b>Mongolia</b><br>Compare effect of grazing on nitrogen cycling in Mongolia .")); 
		map.addOverlay(createMarker(new GLatLng(40.568072,-105.093888), icon, "<b>Fort Collins, CO</b><br>Using soil amendments to promote development of soil organic matter on the shortgrass steppe.")); 
		map.addOverlay(createMarker(new GLatLng(40.567094,-105.056809), icon, "<b>Fort Collins, CO</b><br>N mineralization during winter in shortgrass steppe.")); 
		map.addOverlay(createMarker(new GLatLng(40.568224,-105.109062), icon, "<b>Fort Collins, CO</b><br>Reducing nitrogen and heavy metals in sewage sludge treated lands.")); 
		map.addOverlay(createMarker(new GLatLng(46.201789,-119.763297), icon, "<b>Prosser, WA</b><br>Cover crops to supply N for organic grape production.")); 
		map.addOverlay(createMarker(new GLatLng(46.199903,-119.755121), icon, "<b>Prosser, WA</b><br>Use of slow release fertilizers to mitigate alternate<br>bearing in cranberry.")); 
		map.addOverlay(createMarker(new GLatLng(46.199903,-119.755121), icon, "<b>Fort Benning Columbus, GA</b><br>Forest vegetation community.")); 
		map.addOverlay(createMarker(new GLatLng(32.452592,-84.756889), icon, "<b>Fort Benning Columbus, GA</b><br>Forest vegetation community.")); 
		map.addOverlay(createMarker(new GLatLng(40.486805,-74.436607), icon, "<b>New Brunswick, NJ</b><br>Invasion of Japanese barberry.")); 
		map.addOverlay(createMarker(new GLatLng(33.97998,-105.998268), icon, "<b>New Mexico</b><br>Global change effects on grass-shrub interactions in semi-arid region.")); 
		map.addOverlay(createMarker(new GLatLng(45.825593,-120.816765), icon, "<b>Goldendale, WA</b><br>Determine difference in P supply rate between spring wheat<br>plots fertilized with Avail and with uncoated P.")); 
		map.addOverlay(createMarker(new GLatLng(38.473643,-107.865257), icon, "<b>Montrose, CO</b><br>Restoration and hyphal networks.")); 
		map.addOverlay(createMarker(new GLatLng(47.71221,-104.162178), icon, "<b>Sidney, MT</b><br>NO3 and Bromide Leaching.")); 
		map.addOverlay(createMarker(new GLatLng(43.588493,-119.059528), icon, "<b>Burns, OR</b><br>Invasibility of cheatgrass after prescribed burning of a<br>sagebrush-bunchgrass community.")); 
		map.addOverlay(createMarker(new GLatLng(43.584717,-119.065365), icon, "<b>Burns, OR</b><br>Competition between medusahead and seeded crested wheatgrass.")); 
		map.addOverlay(createMarker(new GLatLng(43.585323,-119.049743), icon, "<b>Burns, OR</b><br>Mechanical treatment of sagebrush.")); 
		map.addOverlay(createMarker(new GLatLng(43.583737,-119.057661), icon, "<b>Burns, OR</b><br>The Response of Mountain Big Sagebrush Plant<br>Communities to Prescribed Burning and Mechanical Treatment:<br>Implications for Sage-Grouse?")); 
		map.addOverlay(createMarker(new GLatLng(40.550487,-105.091209), icon, "<b>Fort Collins, CO</b><br>Nitrogen mineralization rates in a sagebrush steppe<br>community 34 years after 2,4-D herbicide treatment.")); 
		map.addOverlay(createMarker(new GLatLng(32.311684,-106.761818), icon, "<b>Las Cruces, NM</b><br>Ecophysiological responses of Chihuahuan desert grasses to fire.")); 
		map.addOverlay(createMarker(new GLatLng(36.977963,-122.03339), icon, "<b>Santa Cruz, CA</b><br>Deer herbivory on chaparral shrubs in maritime coastal California.")); 
		map.addOverlay(createMarker(new GLatLng(40.561443,-105.18528), icon, "<b>Fort Collins, CO</b><br>The effect of prairie dogs on plant communities and N availability at<br>shortgrass steppe Long Term Ecological Research sites.")); 
		map.addOverlay(createMarker(new GLatLng(40.622969,-75.362206), icon, "<b>Bethlehem, PA</b><br>The effect of changing water levels in wetlands on N and P<br>availability across different landscape positions.")); 
		map.addOverlay(createMarker(new GLatLng(40.622969,-75.347099), icon, "<b>Bethlehem, PA</b><br>Grassland ecology biological control agents.")); 
		map.addOverlay(createMarker(new GLatLng(46.733884,-117.001762), icon, "<b>Moscow, ID</b>")); 
		map.addOverlay(createMarker(new GLatLng(40.622969,-75.347099), icon, "<b>Prosser, WA</b><br>Attraction and retention of beneficial insects through<br>enhanced plant biodiversity in irrigated vineyards (Vitis vinifera L. ).")); 
		map.addOverlay(createMarker(new GLatLng(42.447933,-76.498604), icon, "<b>Ithaca, NY</b>")); 
		map.addOverlay(createMarker(new GLatLng(35.781224,-78.642998), icon, "<b>Raleigh, NC</b><br>Forest silviculture treatments.")); 
		map.addOverlay(createMarker(new GLatLng(42.375438,-72.518806), icon, "<b>Amherst, MA</b><br>Nitrogen availability following nutrient and carbon amendments<br>to a coastal grassland.")); 
		map.addOverlay(createMarker(new GLatLng(30.468975,-91.129646), icon, "<b>Baton Rouge, LA</b>")); 
		map.addOverlay(createMarker(new GLatLng(36.233917,-115.241203), icon, "<b>Las Vegas, NV</b><br>Arctomecon californica habitat requirements in N.")); 
		map.addOverlay(createMarker(new GLatLng(31.05664,-97.354774), icon, "<b>Grassland, Soil & Water Research Laboratory in Temple, TX</b><br>Effects of soil type and precipitation regime on grassland<br>responses to increasing CO2.")); 
		map.addOverlay(createMarker(new GLatLng(36.130832,-97.070503), icon, "<b>Stillwater, OK</b><br>Effects of soil type and precipitation regime on grassland<br>responses to increasing CO2.")); 
		map.addOverlay(createMarker(new GLatLng(42.444893,-85.376244), icon, "<b>Hickory Corners, MI</b><br>The comparison of the incorporation of manure and various<br>forage rotations with potato production to conventional<br>potato production.")); 
		map.addOverlay(createMarker(new GLatLng(44.971259,-93.515739), icon, "<b>Wayzata, MN</b>")); 
		map.addOverlay(createMarker(new GLatLng(42.564865,-114.460487), icon, "<b>Twin Falls, ID</b><br>Application of ion exchange resin membranes and a nutrient forecasting<br>model to determine fertilizer recommendations in the Magic Valley.")); 
		map.addOverlay(createMarker(new GLatLng(42.736573,-84.483604), icon, "<b>East Lansing, MI</b><br>Soil texture interactions with manure management to influence nitrogen<br>availability and soil quality in a potato system.")); 
		map.addOverlay(createMarker(new GLatLng(32.296594,-106.807137), icon, "<b>Las Cruces, NM</b><br>WATOPIA Experiment. The effect of less frequent and larger rainfalls in the Chihuahuan Desert of SW U.S. on N availability and vegetation dominance.")); 
		map.addOverlay(createMarker(new GLatLng(21.295324,-157.822838), icon, "<b>Honolulu, HI</b><br>Transition strategies for organic farms.")); 
		map.addOverlay(createMarker(new GLatLng(21.297883,-157.848244), icon, "<b>Honolulu, HI</b><br>Koa productivity and Nutrient Use Efficiency in Response to Fertilization.")); 

		
      }
    }