//<![CDATA[

	function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	 	  
    function load() {
      if (GBrowserIsCompatible()) {
		  if (site="Adel") {
				var map = new GMap2(document.getElementById("map"));
				map.setCenter(new GLatLng(37.0625, -95.677068), 12);					//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(37.0625, -95.677068);							//The numbers are copied out of the google maps page link
				var marker = createMarker(point,'<b>Adel Physical Therapy</b><BR>102 South 7th St.<BR>Adel, Iowa<BR>(515) 993-5599<BR><a href="http://maps.google.com/maps?daddr=102+S+7th+St,+Adel,+IA+50003&geocode=&dirflg=&saddr=&f=d&sll=41.617335,-94.016265&sspn=0.004885,0.010042&ie=UTF8&z=16&om=1" target="_blank">Get Directions</a>')
				map.addOverlay(marker);
						marker.openInfoWindowHtml('<b>Adel Physical Therapy</b><BR>102 South 7th St.<BR>Adel, Iowa<BR>(515) 993-5599<BR><a href="http://maps.google.com/maps?daddr=102+S+7th+St,+Adel,+IA+50003&geocode=&dirflg=&saddr=&f=d&sll=41.617335,-94.016265&sspn=0.004885,0.010042&ie=UTF8&z=16&om=1" target="_blank">Get Directions</a>')
			} else if (site="Clark") {
				var map = new GMap2(document.getElementById("map"));
				map.setCenter(new GLatLng(41.617261, -94.0163), 12);					//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.617261, -94.0163);							//The numbers are copied out of the google maps page link
				var marker = createMarker(point,'<b>Clark Physical Therapy</b><BR>2001 Westown Parkway<BR>West Des Moines, Iowa<BR>(515) 993-5599<BR><a href="http://maps.google.com/maps?f=d&hl=en&geocode=&time=&date=&ttype=&saddr=&daddr=2001+Westown+Parkway,+West+Des+Moines&sll=41.617261,-94.0163&sspn=0.009769,0.020084&ie=UTF8&z=16&om=1" target="_blank">Get Directions</a>')
				map.addOverlay(marker);
						marker.openInfoWindowHtml('<b>Clark Physical Therapy</b><BR>2001 Westown Parkway<BR>West Des Moines, Iowa<BR>(515) 993-5599<BR><a href="http://maps.google.com/maps?f=d&hl=en&geocode=&time=&date=&ttype=&saddr=&daddr=2001+Westown+Parkway,+West+Des+Moines&sll=41.617261,-94.0163&sspn=0.009769,0.020084&ie=UTF8&z=16&om=1" target="_blank">Get Directions</a>')
	 	 	}
		}
    }

//]]>