  /**
* 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.880800';
			longitude = '-117.540680';
					
		/**
		* 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
		*/
		                /**
                * Add values to location array
                */
                aLatitude[0] = '33.880800';
                aLongitude[0] = '-117.540680';
                                aStore[0] = "<div style='font-size:12px; text-align:left;'><strong>aFe Power Headquarters (#)</strong><br />252 Granite St.<br /><br />Corona, CA 92879<br /><br /><label>Phone:</label> (951) 493-7155<br /><label>Fax:</label> (951) 493-7177<br /><label>Email:</label> <a href='mailto:sales@afepower.com' target='_blank'>sales@afepower.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=1'>Click here to view more details.</a>";
                                /**
                * Add values to location array
                */
                aLatitude[1] = '33.905577';
                aLongitude[1] = '-117.456154';
                                aStore[1] = "<div style='font-size:12px; text-align:left;'><strong>4 Wheel Parts (#55 RIV)</strong><br />3382 Tyler St.<br /><br />Riverside, CA 92503<br /><br /><label>Phone:</label> (951) 359-0111<br /><label>Fax:</label> (951) 359-1177<br /><label>Email:</label> <a href='mailto:riv@4wheelparts.com' target='_blank'>riv@4wheelparts.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=49'>Click here to view more details.</a>";
                                /**
                * Add values to location array
                */
                aLatitude[2] = '34.133773';
                aLongitude[2] = '-117.637698';
                                aStore[2] = "<div style='font-size:12px; text-align:left;'><strong>UC Tech International Corp (#)</strong><br />1943 North Campus Ave <br />#B240<br />Upland, CA 91784<br /><br /><label>Phone:</label> (909) 985-8739<br /><label>Fax:</label> (909) 985-8736<br /><label>Email:</label> <a href='mailto:uctechcorp@gmail.com' target='_blank'>uctechcorp@gmail.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=94'>Click here to view more details.</a>";
                                /**
                * Add values to location array
                */
                aLatitude[3] = '33.737309';
                aLongitude[3] = '-117.850179';
                                aStore[3] = "<div style='font-size:12px; text-align:left;'><strong>4 Wheel Parts (#20 ANA)</strong><br />809 S. Grand Ave.<br /><br />Santa Ana, CA 92705<br /><br /><label>Phone:</label> (714) 542-9800<br /><label>Fax:</label> (714) 542-9890<br /><label>Email:</label> <a href='mailto:ana@4wheelparts.com' target='_blank'>ana@4wheelparts.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=21'>Click here to view more details.</a>";
                                /**
                * Add values to location array
                */
                aLatitude[4] = '34.080662';
                aLongitude[4] = '-117.273570';
                                aStore[4] = "<div style='font-size:12px; text-align:left;'><strong>So Cal Supertrucks (#)</strong><br />774 South E Street<br /><br />San Bernardino, CA 92408<br /><br /><label>Phone:</label> (909) 383-5454<br /><label>Fax:</label> (909) 383-5451<br /><label>Email:</label> <a href='mailto:sales@socalsupertrucks.com' target='_blank'>sales@socalsupertrucks.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=10'>Click here to view more details.</a>";
                                /**
                * Add values to location array
                */
                aLatitude[5] = '33.924697';
                aLongitude[5] = '-117.927445';
                                aStore[5] = "<div style='font-size:12px; text-align:left;'><strong>Modbargains (#)</strong><br />1721 East Lambert Rd.<br />#C<br />La Habra, CA 90631<br /><br /><label>Phone:</label> (714) 582-3330<br /><label>Fax:</label> (714) 857-1003<br /><label>Email:</label> <a href='mailto:sales@modbargains.com' target='_blank'>sales@modbargains.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=2'>Click here to view more details.</a>";
                		
		
		
		/**
		* 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 < 6; 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("<div style='font-size:12px; text-align:left;'><strong>aFe Power Headquarters (#)</strong><br />252 Granite St.<br /><br />Corona, CA 92879<br /><br /><label>Phone:</label> (951) 493-7155<br /><label>Fax:</label> (951) 493-7177<br /><label>Email:</label> <a href='mailto:sales@afepower.com' target='_blank'>sales@afepower.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=1'>Click here to view more details.</a>");
			}
		);
		/**
		* add home_icon overlay
		*/
		map.addOverlay(home_marker);
		
		/**
		* Open default popup
		*/
		map.openInfoWindowHtml(home_point,"<div style='font-size:12px; text-align:left;'><strong>aFe Power Headquarters (#)</strong><br />252 Granite St.<br /><br />Corona, CA 92879<br /><br /><label>Phone:</label> (951) 493-7155<br /><label>Fax:</label> (951) 493-7177<br /><label>Email:</label> <a href='mailto:sales@afepower.com' target='_blank'>sales@afepower.com</a><br /><br /></div><br /><a style='font-size:12px;' href='../store/store.php?store_id=1'>Click here to view more details.</a>");	
		
		/**
		* get center position on map
		* map.getCenterLatLng()
		*/
	}
}

