/**********************************************
* Google Maps API Stuff
* Documentation: http://www.google.com/apis/maps/documentation/
/**********************************************/
//<![CDATA[
	function load() {
		if (GBrowserIsCompatible()) {
			
			// Clark Street Location
			var ClarkLatLong = new GLatLng(41.618247, -83.712464); // Directions from GeoCode (Lat and Long)
			var ClarkMap = new GMap2(document.getElementById("clarkmap")); //getElementByID is the id tag from the div element, it's also formatting in the css document
			
			ClarkMap.setCenter(ClarkLatLong, 15); //GLatLng is lat and long and the 15 is the zoom level.
			var ClarkMarker = new GMarker(ClarkLatLong); //Makes a new red marker object
			ClarkMap.addOverlay(ClarkMarker); //Adds marker from line above to the map
			ClarkMap.addControl(new GSmallMapControl()); //GSmallMapControl gives you +/- zoom and N, S, E, W controls
			
			//Adds listener for a click on the marker to show directions info box
			GEvent.addListener(ClarkMarker, 'click', function() {
      			ClarkMap.openInfoWindowHtml(ClarkMap.getCenter(), "<strong>Clark Street Location</strong><br />1236 Clark Street, Holland, OH 43528<br />Enter your address for driving directions.<form action=\"http://maps.google.com/maps\" method=\"get\" /><input type=\"hidden\" name=\"daddr\" value=\"1236 Clark Street, Holland, OH 43528\" /><input type=\"text\" name=\"saddr\" size=\"50\" /><input type=\"submit\" value=\"Get Directions\" /></form>");
      		});
			
		
			// Airport Highway Location
			var AirportLatLong = new GLatLng(41.610151, -83.715464); // Directions from GeoCode (Lat and Long)
			var AirportMap = new GMap2(document.getElementById("airportmap")); //getElementByID is the id tag from the div element, it's also formatting in the css document
			
			AirportMap.setCenter(AirportLatLong, 15); //GLatLng is lat and long and the 15 is the zoom level.
			var AirportMarker = new GMarker(AirportLatLong); //Makes a new red marker object
			AirportMap.addOverlay(AirportMarker); //Adds marker from line above to the map
			AirportMap.addControl(new GSmallMapControl()); //GSmallMapControl gives you +/- zoom and N, S, E, W controls
			
			//Adds listener for a click on the marker to show directions info box
			GEvent.addListener(AirportMarker, 'click', function() {
      			AirportMap.openInfoWindowHtml(AirportMap.getCenter(), "<strong>Airport Highway Location</strong><br />7341 Airport Hwy, Holland, OH 43528<br />Enter your address for driving directions.<form action=\"http://maps.google.com/maps\" method=\"get\" /><input type=\"hidden\" name=\"saddr\" value=\"7341 Airport Hwy, Holland, OH 43528\" /><input type=\"text\" name=\"daddr\" size=\"50\" /><input type=\"submit\" value=\"Get Directions\" /></form>");
      		});
			
			
			// Monroe Street Location
			var MonroeLatLong = new GLatLng(41.688416, -83.619968); // Directions from GeoCode (Lat and Long)
			var MonroeMap = new GMap2(document.getElementById("monroemap")); //getElementByID is the id tag from the div element, it's also formatting in the css document
			
			MonroeMap.setCenter(MonroeLatLong, 15); //GLatLng is lat and long and the 15 is the zoom level.
			var MonroeMarker = new GMarker(MonroeLatLong); //Makes a new red marker object
			MonroeMap.addOverlay(MonroeMarker); //Adds marker from line above to the map
			MonroeMap.addControl(new GSmallMapControl()); //GSmallMapControl gives you +/- zoom and N, S, E, W controls
			
			//Adds listener for a click on the marker to show directions info box
			GEvent.addListener(MonroeMarker, 'click', function() {
      			MonroeMap.openInfoWindowHtml(MonroeMap.getCenter(), "<strong>Monroe Street Location</strong><br />4528 Monroe St, Toledo, OH 43613<br />Enter your address for driving directions.<form action=\"http://maps.google.com/maps\" method=\"get\" /><input type=\"hidden\" name=\"saddr\" value=\"4528 Monroe St, Toledo, OH 43613\" /><input type=\"text\" name=\"daddr\" size=\"50\" /><input type=\"submit\" value=\"Get Directions\" /></form>");
      		});
		}
	}
//]]>
