  /**
* Load google map data
*/
function loadGoogleMap() 
{
	if (GBrowserIsCompatible()) 
	{
		var map = new GMap2(document.getElementById("google_map"));
		
		map.addControl(new GLargeMapControl());	// the zoom/pan control - GSmallMapControl|GLargeMapControl
		map.addControl(new GMapTypeControl());	// the map/satellite/hybrid control

		/**
		* Set defaults
		*/
		latitude = '37.4419';
		longitude = '-122.1419';
		zoom = 11;	// 11 is half way zoom - the higher the number the closer the zoom
		
		/**
		* Get Location
		*/
					latitude = '33.847265';
			longitude = '-118.113370';
					
		/**
		* Set Center
		*/
		map.setCenter(new GLatLng(latitude, longitude), zoom);
		
		var geocoder = new GClientGeocoder();
		
		/**
		* Initialize location array
		*/
		var aLatitude = new Array();
		var aLongitude = new Array();
		var aStore = new Array();
		/**
		* Build store information array
		*/
				
		
		
		/**
		* Generic Icon
		* @internal Path root to this javascript file
		*/
		var icon = new GIcon();
		
		icon.image = "../media/images/interface/icon/map/auto.png";
		icon.iconSize = new GSize(16, 16);
		
		//icon.shadow = path2;	// path to shadow image
		//icon.shadowSize = new GSize(20, 20);
		
		icon.iconAnchor = new GPoint(8, 8);	// middle of image
		icon.infoWindowAnchor = new GPoint(16, 0);	// top right

		/**
		* Home Icon
		* @internal Path root to this javascript file
		*/
		var home_icon = new GIcon();
		
		home_icon.image = "../media/images/interface/icon/map/home.png";
		home_icon.iconSize = new GSize(16, 16);
		
		//home_icon.shadow = path2;	// path to shadow image
		//home_icon.shadowSize = new GSize(20, 20);
		
		home_icon.iconAnchor = new GPoint(8, 8);	// middle of image
		home_icon.infoWindowAnchor = new GPoint(16, 0);	// top right
		
		/**
		* Create marker at the given point with the given number label
		*/
		function createMarker(point,store_popup) 
		{
			var marker = new GMarker(point, icon);

			GEvent.addListener(
				marker, 
				"click", 
				function() 
				{
					marker.openInfoWindowHtml("" + store_popup);
				}
			);
			return marker;
		}
		
		/**
		* Put the icon on the map
		*/
		for (i = 0; i < 0; i++) 
		{
			var point = new GLatLng(aLatitude[i], aLongitude[i]);
			map.addOverlay(createMarker(point, aStore[i]));	
		}

		var home_point = new GLatLng(latitude, longitude);
		var home_marker = new GMarker(home_point, home_icon);
		
		/**
		* Add listener to home point for click
		*/
		GEvent.addListener(
			home_marker, 
			"click", 
			function() 
			{
				home_marker.openInfoWindowHtml("<span style='font-size:12px;'><strong>Your zipcode point.</strong><br /><br />Click on any of the icons<br />to display more information.<br /></span>");
			}
		);
		/**
		* add home_icon overlay
		*/
		map.addOverlay(home_marker);
		
		/**
		* Open default popup
		*/
		map.openInfoWindowHtml(home_point,"<span style='font-size:12px;'><strong>Your zipcode point.</strong><br /><br />Click on any of the icons<br />to display more information.<br /></span>");	
		
		/**
		* get center position on map
		* map.getCenterLatLng()
		*/
	}
}
