//<![CDATA[
		function load() {
      		if (GBrowserIsCompatible()) {
        		var map = new GMap2(document.getElementById("googlemap"));
				
				// Map Center
				var center = new GLatLng(35.179368,-118.937967);
				map.setCenter(center, 11);
								
				// Pan / Zoom control
				map.addControl(new GLargeMapControl());
				
				map.setMapType(G_NORMAL_MAP);
        		
				// ironwood marker
				var ironwood = new GMarker(center);
				map.addOverlay(ironwood);
				
				//ironwood overlay
				var ironwoodCenter = new GLatLng(35.179368,-118.937967);				
				
				
				//ironwood Info Window
				var ironwoodInfo = "<div style=\"width:260px;\"><a href=\"images/lakeshots/lakeshot_2.jpg\" target=\"_blank\"><img src=\"images/lakeshots/lakeshot_2_tn.png\" style=\"width:100px;float:right;margin:5px 10px 0px 0px;\"\/><\/a><h2>Ironwood Ranch</h2>27835 Millux Rd.<br/>Arvin, California 93203<br/>(310) 470-0542<br/><br/>Get directions: <a href='http://www.google.com/maps?source=uds&daddr=27835+Millux+Rd.+Arvin,+California+93203(Ironwood+Ranch)&iwstate1=dir%3Ato' target='_blank'>To here</a> - <a href='http://www.google.com/maps?source=uds&saddr=27835+Millux+Rd.+Arvin,+California+93203(Ironwood+Ranch)&iwstate1=dir%3Afrom' target='_blank'>From here</a><div style=\"clear:both;\"><\/div><\/div>";			
				map.openInfoWindowHtml(center, ironwoodInfo);				
				GEvent.addListener(ironwood, "click", function() {
					map.openInfoWindowHtml(center, ironwoodInfo);
				});
								
      		}
   		 }
    	//]]>
