    //<![CDATA[
		
    officeArray = new Array(["","Marketing Ease","1830 Wooddale Dr"," Suite 200","Woodbury, MN 55125","44.922940569831894","-92.96896398067474"]);
	//1830 Wooddale Dr, Woodbury, Washington, Minnesota 55125, United States
    // Check to see if this browser can run the Google API
    if (GBrowserIsCompatible()) {

      var gmarkers = [];
      var htmls = [];
      var to_htmls = [];
      var from_htmls = [];
	  
	var baseIcon = new GIcon();
        baseIcon.iconSize = new GSize(41, 27);
        baseIcon.iconAnchor = new GPoint(20, 0);
        baseIcon.infoWindowAnchor = new GPoint(20, 5);
		baseIcon.infoShadowAnchor = new GPoint(0, 0);

      // A function to create the marker and set up the event window
      function createMarker(point,name,html,suite,city,office) {
		if (name=="Marketing Ease") {
			var icon = new GIcon(baseIcon);
			icon.image = "images/mapLogo.png";
		}
		var marker = new GMarker(point,icon);
		
        // The info window version with the "TO HERE" form open
        to_htmls[i] = office+ " " + name + "<br />" + html + suite + "<br />" + city + '<br>Directions: <b>To here</b> - <a href="javascript:fromhere(' + i + ')">From here</a>' +
           '<br><b>Beginning address:</b><form action="http://maps.google.com/maps" method="get" target="_blank">' +
           '<input type="text" SIZE=40 MAXLENGTH=40 name="saddr" id="saddr" value="" />' +
           '<INPUT class="submit" value="" TYPE="SUBMIT">' +
           '<input type="hidden" name="daddr" value="' + html + " " + city + 
                   //"(" + city + ")" +
           '"/>';

        // The info window version with the "FROM HERE" form open
        from_htmls[i] = office+ " " + name + "<br />" + html + suite + "<br />" + city + '<br>Directions: <a href="javascript:tohere(' + i + ')">To here</a> - <b>From here</b>' +
           '<br><b>Ending address:</b><form action="http://maps.google.com/maps" method="get"" target="_blank">' +
           '<input type="text" SIZE=40 MAXLENGTH=40 name="daddr" id="daddr" value="" />' +
           '<INPUT class="submit" value="" TYPE="SUBMIT">' +
           '<input type="hidden" name="saddr" value="' + point.lat() + ',' + point.lng() +
                   "(" + html + " " + city + ")" +
           '"/>';

        // The inactive version of the direction info
        html = office+ " " + name + "<br>" + html + suite + "<br>" + city + '<br>Directions: <a href="javascript:tohere('+i+')">To here</a> - <a href="javascript:fromhere('+i+')">From here</a>';

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        gmarkers[i] = marker;
        htmls[i] = html;
        //i++;
        return marker;
      }

      // functions that open the directions forms
      function tohere(i) {
        gmarkers[i].openInfoWindowHtml(to_htmls[i]);
      }
      function fromhere(i) {
        gmarkers[i].openInfoWindowHtml(from_htmls[i]);
      }

      // Display the map, with some controls and set the initial location
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(44.922940569831894, -92.96896398067474), 13);
		map.enableContinuousZoom();
		map.enableDoubleClickZoom();

        for (var i = 0; i < officeArray.length; i++) {
           	var point = new GLatLng(officeArray[i][5],officeArray[i][6]);
          	map.addOverlay(createMarker(point, officeArray[i][1], officeArray[i][2], officeArray[i][3], officeArray[i][4], officeArray[i][0], officeArray[i][7]));
        }
    }
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
    //]]>