/**
 * @author:		 Edward Galligan
 * @company:	 Digital Road Corp.
 * @client:			 http://westgachiro.com
 * @date			 Sept 17, 2009
 */

 $(document).ready(function()  {
          var map = new GMap2(document.getElementById('indexMap'));			// Finds DIV with ID of map and places map inside of it
          var columbusGA = new GLatLng(32.515178,-84.968225);				// Creates a new instance of GLatLng to use as a reference point
          map.setCenter(columbusGA, 15);												// Sets the center of the	map to the columbusGA object reference and sets the zoom level to 8
    	  marker = new GMarker(columbusGA);										// Creates a new instance of GMarker at the columbusGA object reference position
    	  map.addOverlay(marker);															// Adds the marker to the map
		  map.setUIToDefault();																// Adds UI Controls to the map (default set)
      });
	  
	  
