 //<![CDATA[
function load() {
      if (GBrowserIsCompatible()) {		
		// create a GLatLngBounds object for getting boundary
		var bounds = new GLatLngBounds();  
		
        var map = new GMap2(document.getElementById("g_map"));
        map.setCenter(new GLatLng(30.1025,-95.577068), 9);
        map.setUIToDefault();

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point, index, name, address, phone) {
			
          // Create a lettered icon for this point using our icon class
          var number = index;
          var numberedIcon = new GIcon(baseIcon);
          numberedIcon.image = "http://www.yelladworks.info/mirrorsites/mapmarkers/marker" + number + ".png";

          // Set up our GMarkerOptions object
          markerOptions = { icon:numberedIcon };
          var marker = new GMarker(point, markerOptions);
		  
		  // Setup bounds for dynamically centering map
		  bounds.extend(point);

          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("Kids 'R' Kids of "+name+"<br />"+address+"<br />"+phone+"");
          });
          return marker;
        }
			
		var latlng;
		var name;
		var address;
		var phone;
		
			
				//geocoded location
				latlng = new GLatLng(30.2843106967091, -95.4630053210805);
		
				name = "Conroe";
				address = "100 Kids 'R' Kids Drive <br\> Conroe, TX 77304";
				phone = "(936) 756-7575 <br/> <a href='http://www.krk20tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 1, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.9086773226824, -95.6556809382564);
		
				name = "Copperfield";
				address = "15230 Forest Trails Drive <br\> Houston, TX 77095";
				phone = "(281) 560-3060 <br/> <a href='http://www.krkcopperfield.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 2, name, address, phone));
				
				//geocoded location
				latlng = new GLatLng(29.9478954524997, -95.7409177950927);
		
				name = "Cypress";
				address = "7410 Fry Road <br\> Cypress, TX 77433";
				phone = "(281) 463-3700 <br/> <a href='http://www.krk48tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 3, name, address, phone));
			
				//geocoded location
				latlng = new GLatLng(29.979026263046, -95.653050061655);
		
				name = "Cypress";
				address = "14050 Telge Road <br\> Cypress, TX 77429";
				phone = "(281) 256-0020 <br/> <a href='http://www.krkcolescrossing.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 4, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.9304416775082, -95.6842285708959);
		
				name = "Cypress";
				address = "10740 Barker Cypress Road <br\> Cypress, TX 77433";
				phone = "(281) 304-6004 <br/> <a href='http://www.krkbarkercypress.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 5, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.988597, -95.733511);
		
				name = "Cypress";
				address = "20151 Cypresswood Drive <br\> Cypress, TX 77433";
				phone = "(281) 304-KIDS <br/> <a href='http://www.krkfairfield.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 6, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.9070838922331, -95.5795766267725);
		
				name = "Houston";
				address = "10708 Ranchstone Drive <br\> Houston, TX 77064";
				phone = "(281) 807-0999<br/> <a href='http://www.kidsrkids4tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 7, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.857330433967, -95.6073183704594);
		
				name = "Houston";
				address = "6020 North Eldridge Parkway <br\> Houston, TX 77041";
				phone = "(713) 466-3310 <br/> <a href='http://www.krknortheldridge.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 8, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.7812924490648, -95.6915746586008);
		
				name = "Houston";
				address = "18150 Park Cypress Lane <br\> Houston, TX 77094";
				phone = "(281) 599-0079 <br/> <a href='http://www.krk9tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 9, name, address, phone));
			
				//geocoded location
				latlng = new GLatLng(29.9871840276869, -95.1827083514659);
		
				name = "Humble";
				address = "18410 Timber Forest Drive <br\> Atascocita, TX 77346";
				phone = "(281) 812-3770 <br/> <a href='http://www.krkofhumble.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 10, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.986839, -95.190866);
		
				name = "Humble";
				address = "16325 W Lake Houston Parkway <br\> Atascocita, TX 77346";
				phone = "(281) 454-4244 <br/> <a href='http://www.krkofhumble.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 11, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.938298, -95.265005);
		
				name = "Humble";
				address = "8221 N. Sam Houston Parkway East <br\> Humble, TX 77396";
				phone = "(281) 446-0063 <br/> <a href='http://www.krkofhumble.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 12, name, address, phone));
				
				//geocoded location
				latlng = new GLatLng(29.733198 ,-95.753113);
		
				name = "Katy";
				address = "21955 Westheimer Parkway <br\> Katy, TX 77450";
				phone = "(281) 828-2273 <br/> <a href='http://www.kidsrkids1tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 13, name, address, phone));
			
				//geocoded location
				latlng = new GLatLng(29.726489, -95.800974);
		
				name = "Katy";
				address = "25950 Cinco Ranch Boulevard <br\> Katy, TX 77450";
				phone = "(281) 392-1370 <br/> <a href='http://www.krkcincoranch.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 14, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.70825, -95.809879);
		
				name = "Katy";
				address = "10602 S. Fry Road <br\> Katy, TX 77450";
				phone = "(281) 392-1414 <br/> <a href='http://www.cincoranchkrk.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 15, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.801662, -95.786254);
		
				name = "Katy";
				address = "24007 Franz Road <br\> Katy, TX 77493";
				phone = "(281) 347-5444 <br/> <a href='http://www.charltonhousekrk.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 16, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.803356, -95.786254);
		
				name = "Katy";
				address = "19814 Keith Harrow Boulevard <br\> Katy, TX 77449";
				phone = "(281) 859-7300 <br/> <a href='http://www.krk24tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 17, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(30.010191, -95.178809);
		
				name = "Kingwood";
				address = "6262 Upper Lake Drive <br\> Atascocita, TX 77346";
				phone = "(281) 812-2882 <br/> <a href='http://www.krkofhumble.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 18, name, address, phone));
				
								//geocoded location
				latlng = new GLatLng(29.49108, -95.097279);
		
				name = "League City";
				address = "1092 West League City Parkway <br\> League City, TX 77573";
				phone = "(281) 535-8555 <br/> <a href='http://www.kidsrkids60tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
			
				map.addOverlay(createMarker(latlng, 19, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.491042, -95.154476);
		
				name = "League City";
				address = "170 Bay Area Boulevard <br\> League City, TX 77573";
				phone = "(281) 332-6611 <br/> <a href='http://www.kidsrkids29tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 20, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.535304, -95.070384);
		
				name = "League City";
				address = "450 Constellation Boulevard <br\> League City, TX 77573";
				phone = "(281) 535-8555 <br/> <a href='http://www.kidsrkids22tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 21, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.512301, -95.528795);
		
				name = "Missouri City";
				address = "4401 Sienna Circle <br\> Missouri City, TX 77583";
				phone = "(281) 778-3600 <br/> <a href='http://www.kidsrkids47tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
		
				map.addOverlay(createMarker(latlng, 22, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.581076, -95.577106);
		
				name = "Missouri City";
				address = "2850 Colonial Lakes Drive <br\> Missouri City, TX 77459";
				phone = "(281) 261-6442 <br/> <a href='http://www.kidsrkids12tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 23, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.552623, -95.36813);
		
				name = "Pearland";
				address = "2430 County Road 90 <br\> Pearland, TX 77584";
				phone = "(713) 433-5437 <br/> <a href='http://www.krk13pearland.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 24, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.575636, -95.265541);
		
				name = "Pearland";
				address = "1820 Pearland Parkway <br\> Pearland, TX 77581";
				phone = "(281) 412-4777 <br/> <a href='http://www.krk44tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
			
				map.addOverlay(createMarker(latlng, 25, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.5561068,-95.3787141);
		
				name = "Pearland";
				address = "12015 Broadway Street <br\> Pearland, TX 77584";
				phone = "(713) 436-3688 <br/> <a href='http://www.krkshadowcreekranch.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 26, name, address, phone));
			
				//geocoded location
				latlng = new GLatLng(29.551028, -95.695223);
		
				name = "Richmond";
				address = "1250 Crabb River Road <br\> Richmond, TX 77479";
				phone = "(281) 343-5437 <br/> <a href='http://www.krk23tex.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 27, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.700746, -95.689909);
		
				name = "Richmond";
				address = "17317 Bellaire Boulevard <br\> Richmond, TX 77407";
				phone = "(281) 491-4090 <br/> <a href='http://www.krk40tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 28, name, address, phone));
				
				//geocoded location
				latlng = new GLatLng(29.688350, -95.773500);
		
				name = "Richmond";
				address = "31 Parkway Lake Court <br\> Richmond, TX 77406";
				phone = "(281) 232-9333 <br/> <a href='http://www.kidsrkidsbellaterra.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 29, name, address, phone));
			
				//geocoded location
				latlng = new GLatLng(29.654066, -95.737739);
		
				name = "Richmond";
				address = "2000 Waterside Estates Circle <br\> Richmond, TX 77406";
				phone = "(832) 451-1111 <br/> <a href='http://www.kidsrkids27tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 30, name, address, phone));
			
			
				//geocoded location
				latlng = new GLatLng(30.123266, -95.400338);
		
				name = "Spring";
				address = "Aldine Westfield and Rayford Roads <br\> Spring, TX 77386";
				phone = "(281) 363-2227 <br/> <a href='http://www.krklegends.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 31, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(30.014816, -95.529493);
		
				name = "Spring";
				address = "16722 Squyres Road <br\> Spring, TX 77379";
				phone = "(281) 379-2998 <br/> <a href='http://www.kidsrkids5tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 32, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(30.062989, -95.44585);
		
				name = "Spring";
				address = "2122 Old Holzwarth Road <br\> Spring, TX 77388";
				phone = "(281) 528-7800 <br/> <a href='http://www.krk19tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 33, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(30.070229, -95.510073);
		
				name = "Spring";
				address = "20621 Kuykendahl Road <br\> Spring, TX 77379";
				phone = "(832) 717-0808 <br/> <a href='http://www.krk43tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 34, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.642187, -95.585243);
		
				name = "Stafford";
				address = "12475 Sugardale Drive <br\> Stafford, TX 77477";
				phone = "(281) 240-1111 <br/> <a href='http://www.kidsrkids17tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 35, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.587864, -95.674202);
		
				name = "Sugar Land";
				address = "8202 Homeward Way <br\> Sugar Land, TX 77479";
				phone = "(281) 494-5437 <br/> <a href='http://www.krk11tex.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 36, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.599885, -95.63207);
		
				name = "Sugar Land";
				address = "246 Fluor Daniel Drive <br\> Sugar Land, TX 77479";
				phone = "(281) 240-5437 <br/> <a href='http://www.kidsrkids16tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 37, name, address, phone));
				
			
				//geocoded location
				latlng = new GLatLng(29.653698, -95.651371);
		
				name = "Sugar Land";
				address = "11118 Highway 6 South <br\> Sugar Land, TX 77498";
				phone = "(281) 575-0011 <br/> <a href='http://www.krksugarland.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 38, name, address, phone));
				
				
				//geocoded location
				latlng = new GLatLng(30.134904,-95.447781);
		
				name = "The Woodlands";
				address = "320 Valleywood Lane <br\> The Woodlands, TX 77380";
				phone = "(281) 362-9222 <br/> <a href='http://www.kidsrkids7tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 39, name, address, phone));
				
				
				//geocoded location
				latlng = new GLatLng(30.009721,-95.607201);
		
				name = "Tomball";
				address = "16422 North Eldridge Parkway <br\> Tomball, TX 77377";
				phone = "(281) 374-6922 <br/> <a href='http://www.kidsrkids21tx.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 40, name, address, phone));
				
				
				//geocoded location
				latlng = new GLatLng(29.534863, -95.12561);
		
				name = "Webster";
				address = "151 West Texas Ave. <br\> Webster, TX 77598";
				phone = "(281) 557-0062 <br/> <a href='http://www.krkspacecenter.com/?utm_source=WebReach' target='_blank'> Website</a>";
				
				map.addOverlay(createMarker(latlng, 41, name, address, phone));

				
		// Dynamically set the center and zoom level for our map based on our bounds
		map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));

      }
    }
    //]]>
