	//<![CDATA[
	function onLoad() {
		// Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(12, 20);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);
	
		// Center the map on Palo Alto
		var map = new GMap(document.getElementById("map"));
		map.addControl(new GMapTypeControl());
		map.addControl(new GSmallMapControl());
		map.centerAndZoom(new GPoint(-116.408145, 33.758797), 4);
		
		// Creates a marker whose info window displays the given number
			function createMarker(point, stuff) {
			  var marker = new GMarker(point);
		
			  // Show this marker's info in the info window when it is clicked
			  var html = stuff;
			  GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(html);
			  });
		
			  return marker;
			}
			
			//Lund & Guttry 
			var marker = createMarker(new GPoint(-116.408145, 33.758797),
			  "<span>This is Lund &amp; Guttry</span>");
			map.addOverlay(marker);
			
			
		  }
		
		  //]]> 