//<![CDATA[
		   
	function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	  
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(46.631867, -93.756187), 16);					//These numbers are copied out of google maps page link, the last number is the zoom
		map.addControl(new GSmallMapControl());									//This is a smaller zoon and panning function
		map.addControl(new GMapTypeControl());									//This allows the user to switch between Map, Hybrid, and Satelite views
		var point = new GLatLng(41.631867, -93.756187);							//The numbers are copied out of the google maps page link
		var marker = createMarker(point,'<b>Technology By Design</b><BR>3956 NW Urbandale Drive<BR>Urbandale, IA 50322<BR>(515) 331-7999<BR><a href="http://maps.google.com/maps/place?cid=11326697060479457190&q=3956+NW+Urbandale+Drive,+Urbandale,+IA+50322&hl=en&cd=2&cad=src:pplink&ei=vCfXS6_xN5CUMsWynKwM" target="_blank">Get Directions</a>')
		map.addOverlay(marker);
				marker.openInfoWindowHtml('<b>Technology By Design</b><BR>3956 NW Urbandale Drive<BR>Urbandale, IA 50322<BR>(515) 331-7999<BR><a href="http://maps.google.com/maps/place?cid=11326697060479457190&q=3956+NW+Urbandale+Drive,+Urbandale,+IA+50322&hl=en&cd=2&cad=src:pplink&ei=vCfXS6_xN5CUMsWynKwM" target="_blank">Get Directions</a>')
      }
    }
//]]>