    //<![CDATA[
        function createMarker(point, text, title) {
          var marker =
          new GMarker(point,{title:title});
          GEvent.addListener(
          marker, "click", function() {
            marker.openInfoWindowHtml(text);
          });
          return marker;
        }
		function createSidebarEntry(marker, name, address) {
		  var div = document.createElement('div');
		  var html = '<b>' + name + '</b> <br/>';
		  div.innerHTML = html;
		  div.style.cursor = 'pointer';
		  div.style.marginBottom = '5px'; 
		  GEvent.addDomListener(div, 'click', function() {
			GEvent.trigger(marker, 'click');
		  });
		  GEvent.addDomListener(div, 'mouseover', function() {
			div.style.backgroundColor = '#eee';
		  });
		  GEvent.addDomListener(div, 'mouseout', function() {
			div.style.backgroundColor = '#acd4e6';
		  });
		  return div;
		}

		function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.clearOverlays()
        map.setCenter(new GLatLng(37.4419, -97.5), 4);
        map.addControl(new GSmallMapControl());
		if (mapdata != null) {
			for (j=0; j < mapdata.states.length; j++) {
				for (var i = 0; i < mapdata.states[j].stores.length; i++) {
					var addr = '<div class="showrmcontent"><b>' + mapdata.states[j].stores[i].name +
						'</b><br>' + mapdata.states[j].stores[i].address +
						'<br>' + mapdata.states[j].stores[i].city +
						', ' + mapdata.states[j].stores[i].state +
						' ' + mapdata.states[j].stores[i].zip +
						'<br>tel: ' + mapdata.states[j].stores[i].tel + '</div>'
					var marker = createMarker( new GLatLng(mapdata.states[j].stores[i].lat, mapdata.states[j].stores[i].lng),
							addr, mapdata.states[j].stores[i].name);
					map.addOverlay(marker);
				}
			}
		}

		function twoDArray(iRows, iCols) {
		    var i;
		    var j;
		    var a = new Array(iRows);
		    for (i = 0; i < iRows; i++) {
		        a[i] = new Array(iCols);
		        for (j = 0; j < iCols; j++) {
		            a[i][j] = "";
		        }
		    }
		    return (a);
		} 		
      }
    }
	
	function clearmap() {
			resetsidebar();
			load();
	}
	function resetsidebar() {
			var sidebar = document.getElementById('sidebar');
			if ( sidebar.hasChildNodes() )
			{
				while ( sidebar.childNodes.length >= 1 )
				{
					sidebar.removeChild( sidebar.firstChild );       
				} 
			}
	}
	function mapstate(id){
			resetsidebar();
			var map = new GMap2(document.getElementById("map"));
			map.clearOverlays()
			map.setCenter(new GLatLng(mapdata.states[id].mapcenter.lat, mapdata.states[id].mapcenter.lng), mapdata.states[id].zoomlevel);
			map.addControl(new GSmallMapControl());
			var sidebar = document.getElementById('sidebar');
			for (var i = 0; i < mapdata.states[id].stores.length; i++) {
				var addr = '<div class="showrmcontent"><b>' + mapdata.states[id].stores[i].name +
					'</b><br>' + mapdata.states[id].stores[i].address +
					'<br>' + mapdata.states[id].stores[i].city +
					', ' + mapdata.states[id].stores[i].state +
					' ' + mapdata.states[id].stores[i].zip +
					'<br>tel: ' + mapdata.states[id].stores[i].tel + '</div>'
				var marker = createMarker( new GLatLng(mapdata.states[id].stores[i].lat, mapdata.states[id].stores[i].lng),
						addr, mapdata.states[id].stores[i].name);
				map.addOverlay(marker);
				var sidebarEntry = createSidebarEntry(marker, mapdata.states[id].stores[i].name, addr);
				sidebar.appendChild(sidebarEntry);
			}
	}

function loadStates() 
{
		for(i = 0; i < mapdata.states.length; i++)
		{
			document.getElementById("states").innerHTML += 
				"<div id='" + mapdata.states[i].short_name + 
				"' onclick=\"mapstate(" + mapdata.states[i].index + 
				")\" onmouseover=\"style.backgroundColor='#fff';\" onmouseout=\"style.backgroundColor='#e5f7ff';\" style=\"cursor: pointer;\">" +
				mapdata.states[i].name + "</div>";
		}
}

var mapdata = {
	"states": [ {
		"index": 0,
		"name": "Alaska",
		"short_name": "AK",
		"mapcenter": {
			"lat": 63.58767529470318,
			"lng": -154.51171875
		},
		"zoomlevel": 5,
		"stores": [ {
				"name": "hertern boutique",
				"address": "811 W 8th Ave",
				"city": "anchorage",
				"state": "AK",
				"zip": "99501",
				"tel": "907.278.8376",
				"lat": 61.214882,
				"lng": -149.898155
			} ]
	}, {
		"index": 1,
		"name": "Alabama",
		"short_name": "AL",
		"mapcenter": {
			"lat": 32.318231,
			"lng": -86.90229
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "effies",
				"address": "404 queen city ave",
				"city": "tuscaloosa",
				"state": "AL",
				"zip": "35401",
				"tel": "205.345.1814",
				"lat": 33.212901,
				"lng": -87.5606
			} ]
	}, {
		"index": 2,
		"name": "Arkansas",
		"short_name": "AR",
		"mapcenter": {
			"lat": 35.20105,
			"lng": -91.831833
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "blondette",
				"address": "5507 country club blvd.",
				"city": "little rock",
				"state": "AR",
				"zip": "72207",
				"tel": "501.661.1600",
				"lat": 34.771964,
				"lng": -92.334981
			} ]
	}, {
		"index": 3,
		"name": "Arizona",
		"short_name": "AZ",
		"mapcenter": {
			"lat": 34.048928,
			"lng": -111.093731
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "adornments",
				"address": "34505 n. scottsdale rd.",
				"city": "scottsdale",
				"state": "AZ",
				"zip": "85266",
				"tel": "480.488.1632",
				"lat": 33.79816,
				"lng": -111.92644
			}, {
				"name": "moody blues",
				"address": "7135 e. camelback rd.<br>Suite #180",
				"city": "scottsdale",
				"state": "AZ",
				"zip": "85251",
				"tel": "480.558.7494 ext 4",
				"lat": 33.501798,
				"lng": -111.927284
			}, {
				"name": "petite chateau",
				"address": "3939 campbell ave",
				"city": "phoenix",
				"state": "AZ",
				"zip": "85018",
				"tel": "602.667.3551",
				"lat": 33.502382,
				"lng": -111.996495
			}, {
				"name": "trendy tag",
				"address": "2470 w. happy valley rd.<br>#1183",
				"city": "phoenix",
				"state": "AZ",
				"zip": "85085",
				"tel": "623.587.0095",
				"lat": 33.713099,
				"lng": -112.111167
			} ]
	}, {
		"index": 4,
		"name": "N. California",
		"short_name": "NCA",
		"mapcenter": {
			"lat": 37.9,
			"lng": -121.65
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "azalea boutique",
				"address": "411 hayes street",
				"city": "san francisco",
				"state": "CA",
				"zip": "94102",
				"tel": "415.861.9888",
				"lat": 37.776715,
				"lng": -122.423173
			}, {
				"name": "back space",
				"address": "351 divisadero street",
				"city": "san francisco",
				"state": "CA",
				"zip": "94117",
				"tel": "415.355.1051",
				"lat": 37.77266,
				"lng": -122.437498
			}, {
				"name": "boutique 151",
				"address": "151 main street",
				"city": "los altos",
				"state": "CA",
				"zip": "94022",
				"tel": "650.947.7151",
				"lat": 37.379474,
				"lng": -122.114766
			}, {
				"name": "candy store",
				"address": "3153 16th street",
				"city": "san francisco",
				"state": "CA",
				"zip": "94103",
				"tel": "415.863.8143",
				"lat": 37.764738,
				"lng": -122.423238
			}, {
				"name": "chrissy bee",
				"address": "622 shrader st.",
				"city": "san francisco",
				"state": "CA",
				"zip": "94117",
				"tel": "415.221.3020",
				"lat": 37.769125,
				"lng": -122.451634
			}, {
				"name": "elisa wen",
				"address": "1192 locust st.",
				"city": "walnut creek",
				"state": "CA",
				"zip": "94596",
				"tel": "925.906.9500",
				"lat": 37.895933,
				"lng": -122.061226
			}, {
				"name": "lazio",
				"address": "4364 town center blvd.<br>suite 114",
				"city": "el dorado hills",
				"state": "CA",
				"zip": "95762",
				"tel": "916.939.0102",
				"lat": 38.650474,
				"lng": -121.06653
			}, {
				"name": "lilac dress boutique",
				"address": "1918 encinal ave.",
				"city": "alameda",
				"state": "CA",
				"zip": "94507",
				"tel": "510.865.2544",
				"lat": 37.766929,
				"lng": -122.254657
			}, {
				"name": "taylor james",
				"address": "4333 arden way",
				"city": "sacramento",
				"state": "CA",
				"zip": "95864",
				"tel": "916.485.4333",
				"lat": 38.595694,
				"lng": -121.363518
			}, {
				"name": "viva diva",
				"address": "1327 fourth street",
				"city": "san rafael",
				"state": "CA",
				"zip": "94901",
				"tel": "415.256.8380",
				"lat": 37.797549,
				"lng": -122.431305
			}, {
				"name": "white label",
				"address": "1951 union st.",
				"city": "san francisco",
				"state": "CA",
				"zip": "94123",
				"tel": "415.563.3600",
				"lat": 37.973304,
				"lng": -122.531157
			} ]
	}, {
		"index": 5,
		"name": "S. California",
		"short_name": "SCA",
		"mapcenter": {
			"lat": 33.78143022380356,
			"lng": -117.78167724609375
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "a.sweet boutique",
				"address": "253 s. beverly dr.",
				"city": "beverly hills",
				"state": "CA",
				"zip": "90212",
				"tel": "310.860.9265",
				"lat": 34.063549,
				"lng": -118.399254
			}, {
				"name": "audley k",
				"address": "1411 1/2 n kenneth road",
				"city": "glendale",
				"state": "CA",
				"zip": "91201",
				"tel": "818.242.575",
				"lat": 34.172722,
				"lng": -118.279605
			}, {
				"name": "clover",
				"address": "2756 rowena ave",
				"city": "los angeles",
				"state": "CA",
				"zip": "90039",
				"tel": "323.661.4142",
				"lat": 34.107314,
				"lng": -118.264136
			}, {
				"name": "dame",
				"address": "725 broadway",
				"city": "santa monica",
				"state": "CA",
				"zip": "90401",
				"tel": "",
				"lat": 34.01772,
				"lng": -118.490608
			}, {
				"name": "dv santa monica",
				"address": "2710 main st.",
				"city": "santa monica",
				"state": "CA",
				"zip": "90405",
				"tel": "310.314.5460",
				"lat": 34.000697,
				"lng": -118.48249
			}, {
				"name": "dv melrose",
				"address": "8481 melrose pl.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90069",
				"tel": "213.529.2111",
				"lat": 34.083749,
				"lng": -118.375935
			}, {
				"name": "flaunt",
				"address": "266 s. beverly dr.",
				"city": "beverly hills",
				"state": "CA",
				"zip": "90212",
				"tel": "310.274.5027",
				"lat": 34.063238,
				"lng": -118.398984
			}, {
				"name": "FOUR",
				"address": "8016 melrose ave.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90046",
				"tel": "323.944.0941",
				"lat": 34.083709,
				"lng": -118.364277
			}, {
				"name": "fred segal trend",
				"address": "420 broadway",
				"city": "santa monica",
				"state": "CA",
				"zip": "90401",
				"tel": "310.394.7535",
				"lat": 34.015206,
				"lng": -118.493257
			}, {
				"name": "graceful holdings",
				"address": "401 newport center dr.",
				"city": "newport beach",
				"state": "CA",
				"zip": "92660",
				"tel": "949.959.8020",
				"lat": 33.61424,
				"lng": -117.873143
			}, {
				"name": "hillary rush",
				"address": "8222 w. 3rd st.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90048",
				"tel": "323.852.0088",
				"lat": 34.07237,
				"lng": -118.368659
			}, {
				"name": "lady",
				"address": "4974 eagle rock blvd.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90041",
				"tel": "323.254.6500",
				"lat": 34.13687,
				"lng": -118.214513
			}, {
				"name": "mesh and lace",
				"address": "3208 w. sunset blvd.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90026",
				"tel": "323.667.1732",
				"lat": 34.085584,
				"lng": -118.275092
			}, {
				"name": "miso fly boutique",
				"address": "206 e. state street",
				"city": "redlands",
				"state": "CA",
				"zip": "92374",
				"tel": "909.793.5200",
				"lat": 34.056263,
				"lng": -117.180187
			}, {
				"name": "rags style",
				"address": "404 s. figueroa st., #204",
				"city": "los angeles",
				"state": "CA",
				"zip": "90071",
				"tel": "213.622.6924",
				"lat": 34.053332,
				"lng": -118.25596
			}, {
				"name": "revolve clothing",
				"address": "8452 melrose ave.",
				"city": "los angeles",
				"state": "CA",
				"zip": "90069",
				"tel": "323.944.0311",
				"lat": 34.082559,
				"lng": -118.374917
			}, {
				"name": "robyns energy",
				"address": "2325 palos verdes dr. west<br># 104",
				"city": "palos verdes",
				"state": "CA",
				"zip": "90274",
				"tel": "310.377.6683",
				"lat": 33.77437,
				"lng": -118.417234
			}, {
				"name": "secret boutique",
				"address": "124 c w stocker st.",
				"city": "glendale",
				"state": "CA",
				"zip": "91202",
				"tel": "818.243.5722",
				"lat": 34.16621,
				"lng": -118.268126
			}, {
				"name": "secret wardrobe",
				"address": "2523 1/2 madison ave.",
				"city": "montebello",
				"state": "CA",
				"zip": "90640",
				"tel": "",
				"lat": 34.018041,
				"lng": -118.12925
			}, {
				"name": "street prophecy",
				"address": "1316 sartori ave.",
				"city": "torrance",
				"state": "CA",
				"zip": "90501",
				"tel": "310.787.9565",
				"lat": 33.835003,
				"lng": -118.315436
			}, {
				"name": "upright international",
				"address": "22111 s. vermont ave.",
				"city": "torrance",
				"state": "CA",
				"zip": "90502",
				"tel": "310.782.7277",
				"lat": 33.826798,
				"lng": -118.29051
			} ]
	}, {
		"index": 6,
		"name": "Colorado",
		"short_name": "CO",
		"mapcenter": {
			"lat": 39.77,
			"lng": -105.05
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "max and me",
				"address": "3867 tennyson st.",
				"city": "denver",
				"state": "CO",
				"zip": "80212",
				"tel": "303.455.9663",
				"lat": 39.770384,
				"lng": -105.044201
			} ]
	}, {
		"index": 7,
		"name": "Connecticut",
		"short_name": "CT",
		"mapcenter": {
			"lat": 41.76,
			"lng": -72.74
		},
		"zoomlevel": 10,
		"stores": [ {
				"name": "kimberly boutique",
				"address": "968 farmington ave.",
				"city": "w. hartford",
				"state": "CT",
				"zip": "06107",
				"tel": "860.523.4894",
				"lat": 41.761827,
				"lng": -72.742989
			} ]
	}, {
		"index": 8,
		"name": "Washington DC",
		"short_name": "DC",
		"mapcenter": {
			"lat": 38.912,
			"lng": -77.05
		},
		"zoomlevel": 11,
		"stores": [ {
				"name": "rue 14",
				"address": "1803a 14th street nw",
				"city": "washington",
				"state": "DC",
				"zip": "20009",
				"tel": "202.462.6200",
				"lat": 38.914239,
				"lng": -77.031789
			},{
				"name": "sugar",
				"address": "1633 wisconsin ave. nw",
				"city": "washington",
				"state": "DC",
				"zip": "20007",
				"tel": "202.333.5331",
				"lat": 38.911437,
				"lng": -77.065295
			} ]
	}, {
		"index": 9,
		"name": "Florida",
		"short_name": "FL",
		"mapcenter": {
			"lat": 26.84,
			"lng": -81.07
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "essence",
				"address": "78 miracle mile",
				"city": "miami",
				"state": "FL",
				"zip": "33134",
				"tel": "305.448.6777",
				"lat": 25.74968,
				"lng": -80.256348
			},{
				"name": "emporium",
				"address": "4710 south le jeun rd.",
				"city": "coral gables",
				"state": "FL",
				"zip": "33146",
				"tel": "786.268.0687",
				"lat": 25.728496,
				"lng": -80.261904
			},{
				"name": "flirt",
				"address": "17100 collins ave., #104",
				"city": "sunny isles beach",
				"state": "FL",
				"zip": "33160",
				"tel": "305.944.3533",
				"lat": 25.934265,
				"lng": -80.121927
			},{
				"name": "penelope t.",
				"address": "1413 s. howard dr.,ste 104",
				"city": "tampa",
				"state": "FL",
				"zip": "33606",
				"tel": "813.254.5740",
				"lat": 27.928643,
				"lng": -82.483344
			} ]
	}, {
		"index": 10,
		"name": "Georgia",
		"short_name": "GA",
		"mapcenter": {
			"lat": 33.741,
			"lng": -84.359
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "1 five o",
				"address": "1000 marietta st., ste. 104",
				"city": "atlanta",
				"state": "ga",
				"zip": "30318",
				"tel": "404.261.5537",
				"lat": 33.779324,
				"lng": -84.410581
			},{
				"name": "bill hallman, Inc.",
				"address": "784 n.highland ave.",
				"city": "atlanta",
				"state": "ga",
				"zip": "30306",
				"tel": "404.872.8234",
				"lat": 33.775780,
				"lng": -84.351950
			},{
				"name": "laydee boutique",
				"address": "1070 longshore dr.",
				"city": "decatur",
				"state": "ga",
				"zip": "30032",
				"tel": "678.232.6907",
				"lat": 33.763576,
				"lng": -84.239364
			},{
				"name": "flirt",
				"address": "153 e. clayton st.",
				"city": "atlanta",
				"state": "ga",
				"zip": "30601",
				"tel": "706.543.6850",
				"lat": 33.958383,
				"lng": -83.376233
			} ]
	}, {
		"index": 11,
		"name": "Hawaii",
		"short_name": "HI",
		"mapcenter": {
			"lat": 21.18,
			"lng": -157.80
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "the butik",
				"address": "1067 kapiolani blvd., ste a-3",
				"city": "honolulu",
				"state": "hi",
				"zip": "96814",
				"tel": "808.593.4484",
				"lat": 21.2964463,
				"lng": -157.8501317
			} ]
	}, {
		"index": 12,
		"name": "Illinois",
		"short_name": "IL",
		"mapcenter": {
			"lat": 41.8482,
			"lng": -87.6339
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "belmont army",
				"address": "855 w. belmont ave.",
				"city": "chicago",
				"state": "il",
				"zip": "60657",
				"tel": "773.549.1038",
				"lat": 41.939667,
				"lng": -87.651492
			}, {
				"name": "clever alice",
				"address": "750 n. franklin",
				"city": "chicago",
				"state": "il",
				"zip": "60610",
				"tel": "312.587.8693",
				"lat": 41.8959044,
				"lng": -87.635697
			}, {
				"name": "e street denim co.",
				"address": "1876 first st.",
				"city": "highland park",
				"state": "il",
				"zip": "60035",
				"tel": "847.433.0050",
				"lat": 42.186397,
				"lng": -87.8005979
			}, {
				"name": "nika",
				"address": "143 n. northwest highway",
				"city": "park ridge",
				"state": "il",
				"zip": "60068",
				"tel": "847.696.1700",
				"lat": 42.0127443,
				"lng": -87.8318356
			}, {
				"name": "penelopes",
				"address": "1913 west division st.",
				"city": "chicago",
				"state": "il",
				"zip": "60622",
				"tel": "773.395.2351",
				"lat": 41.9031968,
				"lng": -87.6753559
			} ]
	}, {
		"index": 13,
		"name": "Louisiana",
		"short_name": "LA",
		"mapcenter": {
			"lat": 30.4244415,
			"lng": -91.1243475
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "love",
				"address": "7474 corporate blvd., ste 301",
				"city": "baton rouge",
				"state": "la",
				"zip": "70809",
				"tel": "225.218.9600",
				"lat": 30.4244415,
				"lng": -91.1243475
			} ]
	}, {
		"index": 14,
		"name": "Massachusetts",
		"short_name": "MA",
		"mapcenter": {
			"lat": 42.3531,
			"lng": -71.781
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "church st. trading",
				"address": "4 railroad st.",
				"city": "great barrington",
				"state": "ma",
				"zip": "01230",
				"tel": "413.528.6120",
				"lat": 42.1943982,
				"lng": -73.3624868
			}, {
				"name": "crush",
				"address": "131 charles st. ",
				"city": "boston",
				"state": "ma",
				"zip": "02114",
				"tel": "617.720.0010",
				"lat": 42.36,
				"lng": -71.0706
			}, {
				"name": "first date",
				"address": "28 chestnut st.",
				"city": "andover",
				"state": "ma",
				"zip": "01810",
				"tel": "978.247.8999",
				"lat": 42.6558,
				"lng": -71.1389
			}, {
				"name": "habit",
				"address": "703 e. broadway st.",
				"city": "boston",
				"state": "ma",
				"zip": "02127",
				"tel": "617.269.1998",
				"lat": 42.3354,
				"lng": -71.0372
			}, {
				"name": "jean therapy",
				"address": "152 brookline ave.",
				"city": "boston",
				"state": "ma",
				"zip": "02215",
				"tel": "617.266.6555",
				"lat": 42.3449091,
				"lng": -71.1009238
			}, {
				"name": "the tannery",
				"address": "11A brattle st.",
				"city": "cambridge",
				"state": "ma",
				"zip": "02138",
				"tel": "617.491.0810",
				"lat": 42.3733645,
				"lng": -71.120019
			}, {
				"name": "the velvet fly",
				"address": "424 hanover st.",
				"city": "boston",
				"state": "ma",
				"zip": "02113",
				"tel": "617.557.4fly",
				"lat": 42.3662685,
				"lng": -71.0527935
			}, {
				"name": "turtle",
				"address": "619 tremont st.",
				"city": "boston",
				"state": "ma",
				"zip": "02118",
				"tel": "617.266.2610",
				"lat": 42.3426145,
				"lng": -71.0742197
			} ]
	}, {
		"index": 15,
		"name": "Minnesota",
		"short_name": "MN",
		"mapcenter": {
			"lat": 44.95,
			"lng": -93.26
		},
		"zoomlevel": 10,
		"stores": [ {
				"name": "belle reve",
				"address": "320 e. hennepin ave",
				"city": "minneapolis",
				"state": "mn",
				"zip": "55414",
				"tel": "612.333.3148",
				"lat": 44.9880963,
				"lng": -93.2561066
			}, {
				"name": "drama",
				"address": "651 nicollet mall, #130",
				"city": "minneapolis",
				"state": "mn",
				"zip": "55402",
				"tel": "612.388.9423",
				"lat": 44.9773426,
				"lng": -93.2718067
			}, {
				"name": "ivy",
				"address": "3001 hennepin ave.",
				"city": "minneapolis",
				"state": "mn",
				"zip": "55408",
				"tel": "612.827.2764",
				"lat": 44.948187,
				"lng": -93.298259
			} ]
	}, {
		"index": 16,
		"name": "Missouri",
		"short_name": "MO",
		"mapcenter": {
			"lat": 39.0928,
			"lng": -94.417
		},
		"zoomlevel": 10,
		"stores": [ {
				"name": "the uptown boutique",
				"address": "200 n. liberty",
				"city": "independence",
				"state": "mo",
				"zip": "64050",
				"tel": "816.836.7369",
				"lat": 39.0928256,
				"lng": -94.4170863
			} ]
	}, {
		"index": 17,
		"name": "North Carolina",
		"short_name": "NC",
		"mapcenter": {
			"lat": 35.5,
			"lng": -79.13
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "008",
				"address": "105 market street",
				"city": "wilmington",
				"state": "nc",
				"zip": "28401",
				"tel": "910.772.8009",
				"lat": 34.235553,
				"lng": -77.948513
			}, {
				"name": "coco fleur",
				"address": "8145 ardrey kell rd., ste 102",
				"city": "charlotte",
				"state": "nc",
				"zip": "28277",
				"tel": "704.321.2626",
				"lat": 35.038902,
				"lng": -80.794135
			}, {
				"name": "nitsas",
				"address": "107 s. stratford rd. ",
				"city": "winston walem",
				"state": "nc",
				"zip": "27104",
				"tel": "336.725.1999",
				"lat": 36.0947869,
				"lng": -80.277083
			}, {
				"name": "rebecca & co",
				"address": "3326 w. friendly center",
				"city": "greensboro",
				"state": "nc",
				"zip": "27410",
				"tel": "336.292.2455",
				"lat": 36.0515413,
				"lng": -79.8481736
			}, {
				"name": "the pink hangar",
				"address": "2935 providence rd., ste 103",
				"city": "charlotte",
				"state": "nc",
				"zip": "28211",
				"tel": "704.366.7272",
				"lat": 35.1713455,
				"lng": -80.8082193
			}, {
				"name": "za za zsu",
				"address": "1918 perry st",
				"city": "durham",
				"state": "nc",
				"zip": "27705",
				"tel": "919.286.9800",
				"lat": 36.0078109,
				"lng": -78.921769
			} ]
	}, {
		"index": 18,
		"name": "Nebraska",
		"short_name": "NE",
		"mapcenter": {
			"lat": 41.24,
			"lng": -96.18
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "garment district",
				"address": "16909 lakeside hills plaza",
				"city": "omaha",
				"state": "ne",
				"zip": "68130",
				"tel": "402.557.6100",
				"lat": 41.237533,
				"lng": -96.17776
			} ]
	}, {
		"index": 19,
		"name": "New Hampshire",
		"short_name": "NH",
		"mapcenter": {
			"lat": 43.7,
			"lng": -72.29
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "juliana",
				"address": "44 s. main st.",
				"city": "hanover",
				"state": "nh",
				"zip": "03755",
				"tel": "603.643.3350",
				"lat": 43.700942,
				"lng": -72.2894286
			} ]
	}, {
		"index": 20,
		"name": "New Jersey",
		"short_name": "NJ",
		"mapcenter": {
			"lat": 40.60,
			"lng": -74.11
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "belmondo",
				"address": "605 35th street",
				"city": "shrewsbury",
				"state": "nj",
				"zip": "07702",
				"tel": "732.747.1233",
				"lat": 40.204813,
				"lng": -74.026836
			}, {
				"name": "bou bou collection",
				"address": "garden state plaza, ste #1143",
				"city": "paramus",
				"state": "nj",
				"zip": "07652",
				"tel": "845.727.0700",
				"lat": 40.920578,
				"lng": -74.072189
			}, {
				"name": "coco",
				"address": "206 bellevue ave.",
				"city": "montclair",
				"state": "nj",
				"zip": "07043",
				"tel": "973.233.0005",
				"lat": 40.840418,
				"lng": -74.206607
			}, {
				"name": "jessie james",
				"address": "503 washington st.",
				"city": "hoboken",
				"state": "nj",
				"zip": "07030",
				"tel": "201.420.1665",
				"lat": 40.742317,
				"lng": -74.0290969
			}, {
				"name": "marcia's attic",
				"address": "32 north dean st.",
				"city": "englewood",
				"state": "nj",
				"zip": "07631",
				"tel": "201.894.5702",
				"lat": 40.8942767,
				"lng": -73.9740717
			}, {
				"name": "ross and ross",
				"address": "5 klines ct",
				"city": "lambertville",
				"state": "nj",
				"zip": "08530",
				"tel": "609.397.1288",
				"lat": 40.3655818,
				"lng": -74.9452818
			}, {
				"name": "tia's place",
				"address": "277 grove st.",
				"city": "jersey city",
				"state": "nj",
				"zip": "07302",
				"tel": "201.451.9358",
				"lat": 40.7177183,
				"lng": -74.0440108
			}, {
				"name": "rubees closet",
				"address": "720 monroe st., ste e209",
				"city": "hoboken",
				"state": "nj",
				"zip": "07030",
				"tel": "201.683.5672",
				"lat": 40.746997,
				"lng": -74.037724
			} ]
	}, {
		"index": 21,
		"name": "New Mexico",
		"short_name": "NM",
		"mapcenter": {
			"lat": 35.68,
			"lng": -105.945
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "cupcake",
				"address": "328 montezuma ave",
				"city": "santa fe",
				"state": "nm",
				"zip": "87501",
				"tel": "505.988.4744",
				"lat": 35.6848687,
				"lng": -105.9453551
			} ]
	}, {
		"index": 22,
		"name": "NY-Manhattan",
		"short_name": "NYM",
		"mapcenter": {
			"lat": 40.752249,
			"lng": -73.992124
		},
		"zoomlevel": 12,
		"stores": [ {
				"name": "american trends",
				"address": "248 w. 35th street",
				"city": "new york",
				"state": "ny",
				"zip": "10001",
				"tel": "212.390.8080",
				"lat": 40.752249,
				"lng": -73.992124
			}, {
				"name": "azaleas",
				"address": "223 e. 10th st.",
				"city": "new york",
				"state": "ny",
				"zip": "10003",
				"tel": "212.253.5484",
				"lat": 40.729444,
				"lng": -73.985451
			}, {
				"name": "big drop",
				"address": "481 greenwich st., ste. 5B",
				"city": "new york",
				"state": "ny",
				"zip": "10013",
				"tel": "212.343.3200",
				"lat": 40.7248482,
				"lng": -74.0092916
			}, {
				"name": "capucine",
				"address": "20 harrison st.",
				"city": "new york",
				"state": "ny",
				"zip": "10013",
				"tel": "212.219.4030",
				"lat": 40.718943,
				"lng": -74.009807
			}, {
				"name": "circa now",
				"address": "238e. 6th st.",
				"city": "new york",
				"state": "ny",
				"zip": "10008",
				"tel": "212.254.2555",
				"lat": 40.727601,
				"lng": -73.989057
			}, {
				"name": "coclico",
				"address": "275 mott st.",
				"city": "new york",
				"state": "ny",
				"zip": "10012",
				"tel": "212.965.5462",
				"lat": 40.723949,
				"lng": -73.994774
			}, {
				"name": "coco & delilah",
				"address": "115 st. mark's place",
				"city": "new york",
				"state": "ny",
				"zip": "10009",
				"tel": "212.254.8741",
				"lat": 40.7305556,
				"lng": -73.9880556
			}, {
				"name": "darling",
				"address": "1 horatio st",
				"city": "new york",
				"state": "ny",
				"zip": "10014",
				"tel": "646.336.6966",
				"lat": 40.738916,
				"lng": -74.003612
			}, {
				"name": "dv",
				"address": "149 ludlow st.",
				"city": "new york",
				"state": "ny",
				"zip": "10002",
				"tel": "212.529.2111",
				"lat": 40.7208029,
				"lng": -73.988252
			}, {
				"name": "gargyle",
				"address": "16a orchard street",
				"city": "new york",
				"state": "ny",
				"zip": "10002",
				"tel": "917.470.9367",
				"lat": 40.7152167,
				"lng": -73.9916956
			}, {
				"name": "jessie james",
				"address": "95 greenwich ave.",
				"city": "new york",
				"state": "ny",
				"zip": "10011",
				"tel": "212.217.9944",
				"lat": 40.7375541,
				"lng": -74.0017157
			}, {
				"name": "le marche",
				"address": "17731 st ave., #16",
				"city": "new york",
				"state": "ny",
				"zip": "10128",
				"tel": "646.270.0562",
				"lat": 40.7804806,
				"lng": -73.9467714
			}, {
				"name": "olive & bettes co.",
				"address": "155 west 72nd st.",
				"city": "new york",
				"state": "ny",
				"zip": "10023",
				"tel": "",
				"lat": 40.778433,
				"lng": -73.980471
			}, {
				"name": "project 159",
				"address": "159 7th ave. south  ",
				"city": "new york",
				"state": "ny",
				"zip": "10014",
				"tel": "212.929.4959",
				"lat": 40.735596,
				"lng": -74.001398
			}, {
				"name": "saada",
				"address": "1159 2nd ave.",
				"city": "new york",
				"state": "ny",
				"zip": "10021",
				"tel": "212.223.3505",
				"lat": 40.7618389,
				"lng": -73.9634734
			}, {
				"name": "shop",
				"address": "105 stanton st.",
				"city": "new york",
				"state": "ny",
				"zip": "10002",
				"tel": "212.375.0304",
				"lat": 40.721068,
				"lng": -73.987584
			}, {
				"name": "trendy shop",
				"address": "363 e. 76th st., #5m",
				"city": "new york",
				"state": "ny",
				"zip": "10021",
				"tel": "917.297.1192",
				"lat": 40.7707039,
				"lng": -73.954786
			}, {
				"name": "wink",
				"address": "155 spring st.",
				"city": "new york",
				"state": "ny",
				"zip": "10012",
				"tel": "212.334.2646",
				"lat": 40.7244419,
				"lng": -74.0017249
			}, {
				"name": "wink",
				"address": "188 columbus ave.",
				"city": "new york",
				"state": "ny",
				"zip": "10023",
				"tel": "212.941.7078",
				"lat": 40.7751825,
				"lng": -73.9804431
			}, {
				"name": "wink",
				"address": "1050 lexington ave.",
				"city": "new york",
				"state": "ny",
				"zip": "10021",
				"tel": "212.941.7078",
				"lat": 40.7723178,
				"lng": -73.9608611
			}, {
				"name": "yamak",
				"address": "321 1/2 bleecker st.  ",
				"city": "new york",
				"state": "ny",
				"zip": "10014",
				"tel": "212.807.9100",
				"lat": 40.7142691,
				"lng": -74.0059729
			} ]
	}, {
		"index": 23,
		"name": "New York",
		"short_name": "NY",
		"mapcenter": {
			"lat": 41.80,
			"lng": -75.35
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "a. cheng",
				"address": "152 fifth ave.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11217",
				"tel": "718.783.2826",
				"lat": 40.678107,
				"lng": -73.9793358
			}, {
				"name": "addy & ferro",
				"address": "672 fulton st.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11217",
				"tel": "718.246.2900",
				"lat": 40.686282,
				"lng": -73.975063
			}, {
				"name": "bella fiora luxe",
				"address": "26 chittenden ave.",
				"city": "tucahoe",
				"state": "ny",
				"zip": "10707",
				"tel": "917.664.2015",
				"lat": 40.9628476,
				"lng": -73.8228878
			}, {
				"name": "better boutique",
				"address": "1570 53rd st.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11219",
				"tel": "718.851.7709",
				"lat": 40.628922,
				"lng": -73.988474
			}, {
				"name": "catbird",
				"address": "390 metropolitan ave.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11211",
				"tel": "917.371.1885",
				"lat": 40.713803,
				"lng": -73.955267
			}, {
				"name": "crave",
				"address": "48 n. main st.",
				"city": "port chester",
				"state": "ny",
				"zip": "10573",
				"tel": "917.576.7002",
				"lat": 41.001638,
				"lng": -73.66285
			}, {
				"name": "dado",
				"address": "699 park ave.",
				"city": "rochester",
				"state": "ny",
				"zip": "14607",
				"tel": "585.271.7890",
				"lat": 43.147793,
				"lng": -77.576998
			}, {
				"name": "daria on dryden",
				"address": "210 dryden rd.",
				"city": "ithaca",
				"state": "ny",
				"zip": "14850",
				"tel": "607.273.1251",
				"lat": 42.4418409,
				"lng": -76.484408
			}, {
				"name": "dear fieldbinder",
				"address": "198 smith st.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11201",
				"tel": "718.852.3620",
				"lat": 40.68503,
				"lng": -73.991816
			}, {
				"name": "in style",
				"address": "201-13 linden blvd.",
				"city": "saint albans",
				"state": "ny",
				"zip": "11412",
				"tel": "347.421.6617",
				"lat": 40.695081,
				"lng": -73.750842
			}, {
				"name": "junee",
				"address": "4622 18th ave.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11230",
				"tel": "646.479.6174",
				"lat": 40.629682,
				"lng": -73.979944
			}, {
				"name": "kris tees",
				"address": "2401 23rd ave.",
				"city": "astoria",
				"state": "ny",
				"zip": "11105",
				"tel": "917.747.3684",
				"lat": 40.7774696,
				"lng": -73.9172528
			}, {
				"name": "mini market",
				"address": "218 bedford ave.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11201",
				"tel": "718.302.9337",
				"lat": 40.7167114,
				"lng": -73.9589611
			}, {
				"name": "otte",
				"address": "132 n. 5th St. ",
				"city": "Brooklyn",
				"state": "NY",
				"zip": "11211",
				"tel": "718.302.3007",
				"lat": 40.7168324,
				"lng": -73.959111
			}, {
				"name": "pieces",
				"address": "671 vanderbilt ave.",
				"city": "brooklyn",
				"state": "ny",
				"zip": "11238",
				"tel": "718.857.7211",
				"lat": 40.676784,
				"lng": -73.9687749
			}, {
				"name": "strapless dress",
				"address": "26 a atlantic ave.",
				"city": "lynbrook",
				"state": "ny",
				"zip": "11563",
				"tel": "516.561.8202",
				"lat": 40.656281,
				"lng": -73.671295
			}, {
				"name": "timeless seasons",
				"address": "40 main st.",
				"city": "tarrytown",
				"state": "ny",
				"zip": "10591",
				"tel": "914.366.4227",
				"lat": 41.0762077,
				"lng": -73.8587461
			} ]
	}, {
		"index": 24,
		"name": "Ohio",
		"short_name": "OH",
		"mapcenter": {
			"lat": 40.76,
			"lng": -82.28
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "brigade",
				"address": "1785 coventry rd.",
				"city": "cleveland heights",
				"state": "oh",
				"zip": "44118",
				"tel": "216.932.0700",
				"lat": 41.5110242,
				"lng": -81.5799484
			}, {
				"name": "maxine dear",
				"address": "771 high st., ste C",
				"city": "columbus",
				"state": "oh",
				"zip": "43215",
				"tel": "614.299.2660",
				"lat": 39.9463464,
				"lng": -82.9975919
			} ]
	}, {
		"index": 25,
		"name": "Oregon",
		"short_name": "OR",
		"mapcenter": {
			"lat": 45.54,
			"lng": -122.65
		},
		"zoomlevel": 9,
		"stores": [ {
				"name": "frank james",
				"address": "729 e. burnside #103",
				"city": "portland",
				"state": "or",
				"zip": "97124",
				"tel": "360.733.2268",
				"lat": 45.523232,
				"lng": -122.657975
			}, {
				"name": "idom",
				"address": "1600 ne alberta st.",
				"city": "portland",
				"state": "or",
				"zip": "97211",
				"tel": "503.810.1203",
				"lat": 45.558941,
				"lng": -122.648545
			} ]
	}, {
		"index": 26,
		"name": "Pennsylvania",
		"short_name": "PA",
		"mapcenter": {
			"lat": 40.22,
			"lng": -77.49
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "elegance by edythe",
				"address": "6902-16 bustleton ave.",
				"city": "philadelphia",
				"state": "pa",
				"zip": "19149",
				"tel": "215.624.5060",
				"lat": 40.0419989,
				"lng": -75.064479
			}, {
				"name": "jupe boutique",
				"address": "2306 east carson st.",
				"city": "pittsburgh",
				"state": "pa",
				"zip": "15203",
				"tel": "412.432.7933",
				"lat": 40.428027,
				"lng": -79.97268
			} ]
	}, {
		"index": 27,
		"name": "South Carolina",
		"short_name": "SC",
		"mapcenter": {
			"lat": 33.26,
			"lng": -80.29
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "hampden clothing",
				"address": "357 king st.",
				"city": "charleston",
				"state": "sc",
				"zip": "29401",
				"tel": "843.724.6373",
				"lat": 32.7851181,
				"lng": -79.9358364
			}, {
				"name": "house of sage",
				"address": "51 george st. unit B",
				"city": "charleston",
				"state": "sc",
				"zip": "29401",
				"tel": "843.573.7256",
				"lat": 32.783531,
				"lng": -79.936137
			}, {
				"name": "i heart",
				"address": "825 savannah hwy",
				"city": "charleston",
				"state": "sc",
				"zip": "29407",
				"tel": "843.225.2772",
				"lat": 32.7821204,
				"lng": -79.9862157
			}, {
				"name": "stanley welch",
				"address": "434 north guignard",
				"city": "sumter",
				"state": "sc",
				"zip": "29150",
				"tel": "803.775.1832",
				"lat": 33.928539,
				"lng": -80.366544
			} ]
	}, {
		"index": 28,
		"name": "Tennessee",
		"short_name": "TN",
		"mapcenter": {
			"lat": 35.48,
			"lng": -87.23
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "kristi inc.",
				"address": "5807 kingston pike",
				"city": "knoxville",
				"state": "tn",
				"zip": "37919",
				"tel": "865.584.5163",
				"lat": 35.9338031,
				"lng": -83.9986025
			}, {
				"name": "paisley",
				"address": "112 north main st.",
				"city": "collierville",
				"state": "tn",
				"zip": "38017",
				"tel": "901.853.4911",
				"lat": 35.0428732,
				"lng": -89.6642118
			} ]
	}, {
		"index": 29,
		"name": "Texas",
		"short_name": "TX",
		"mapcenter": {
			"lat": 31.48,
			"lng": -97.23
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "melanie gayle",
				"address": "6818 snider plaza",
				"city": "dallas",
				"state": "tx",
				"zip": "75205",
				"tel": "214.934.1067",
				"lat": 32.8487651,
				"lng": -96.7877711
			}, {
				"name": "minx",
				"address": "408 w. 2nd st.",
				"city": "austin",
				"state": "tx",
				"zip": "78701",
				"tel": "512.476.6469",
				"lat": 30.2653422,
				"lng": -97.7478039
			}, {
				"name": "peyton's place",
				"address": "215 lavaca",
				"city": "austin",
				"state": "tx",
				"zip": "78701",
				"tel": "512.477.5223",
				"lat": 30.2651147,
				"lng": -97.7465195
			} ]
	}, {
		"index": 30,
		"name": "Virginia",
		"short_name": "VA",
		"mapcenter": {
			"lat": 38.29,
			"lng": -77.23
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "rich hippie",
				"address": "44110 ashburn village plaza shop, #130",
				"city": "ashburn",
				"state": "va",
				"zip": "20147",
				"tel": "571.223.3231",
				"lat": 39.0437192,
				"lng": -77.4874899
			}, {
				"name": "d&r style",
				"address": "3420 eagles roost rd.",
				"city": "richmond",
				"state": "va",
				"zip": "23223",
				"tel": "",
				"lat": 37.574179,
				"lng": -77.373201
			}, {
				"name": "hysteria",
				"address": "125 s. fairfax st.",
				"city": "alexandria",
				"state": "va",
				"zip": "22314",
				"tel": "703.548.1615",
				"lat": 38.803781,
				"lng": -77.043027
			}, {
				"name": "pink",
				"address": "3158 w. cary st.",
				"city": "richmond",
				"state": "va",
				"zip": "23221",
				"tel": "804.358.0884",
				"lat": 37.5537152,
				"lng": -77.4821988
			} ]
	}, {
		"index": 31,
		"name": "Washington",
		"short_name": "WA",
		"mapcenter": {
			"lat": 48.23,
			"lng": -122.42
		},
		"zoomlevel": 8,
		"stores": [ {
				"name": "frank james",
				"address": "202 e holly st., #119",
				"city": "bellingham",
				"state": "wa",
				"zip": "98225",
				"tel": "360.733.2268",
				"lat": 48.748463,
				"lng": -122.47838
			}, {
				"name": "dv seattle",
				"address": "5323 ballard ave NW",
				"city": "seattle",
				"state": "wa",
				"zip": "98107",
				"tel": "206.783.4177",
				"lat": 47.66684,
				"lng": -122.384141
			} ]
	}, {
		"index": 32,
		"name": "Wisconsin",
		"short_name": "WI",
		"mapcenter": {
			"lat": 43.66,
			"lng": -89.66
		},
		"zoomlevel": 7,
		"stores": [ {
				"name": "db berg inc.",
				"address": "121 4th st. south",
				"city": "la crosse",
				"state": "wi",
				"zip": "54601",
				"tel": "608.785.2827",
				"lat": 43.81161,
				"lng": -91.251035
			} ]
	}]
}
    //]]>

