    //farm data

    function load() {
		var map = new GMap2(document.getElementById("map"));
		// map.addControl(new GSmallMapControl());
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(33.198498, -84.218764), 17);
    map.openInfoWindowHtml(map.getCenter(),"<font size='2'><br><b>Orchard Hill Christmas Tree Farm</b><br>2415 Old Macon Road<br>Griffin, GA 30266<br><br>Move the zoom slide bar down for a <br>better view of the roads to get here.<br></font>"
     );

		// Icon Info
		var treeicon = new GIcon();
		treeicon.image = "icon_tree.gif";
		treeicon.shadow = "images/shadowicon.png";
		treeicon.iconSize = new GSize(24, 34);
		treeicon.shadowSize = new GSize(1, 1);
		treeicon.iconAnchor = new GPoint(7, 20);
		treeicon.infoWindowAnchor = new GPoint(5, 17);


		// Orchard Hill Christmas Tree Farm, 2415 Old Macon Road, Griffin, GA, 30266
		var p_gaordhardhill = new GLatLng(33.198498,-84.218764);
		var m_gaordhardhill = new GMarker(p_gaordhardhill, treeicon); 
		//GEvent.addListener(m_gaordhardhill, "click", function() {
		GEvent.addListener(m_gaordhardhill, "mouseover", function() {
			m_gaordhardhill.openInfoWindowHtml("<font size='2'><br><b>Orchard Hill Christmas Tree Farm</b><br>2415 Old Macon Road<br>Griffin, GA 30266<br><br>Move the zoom slide bar down for a <br>better view of the roads to get here.<br></font>");
		});
		map.addOverlay(m_gaordhardhill);


	}
