
		//<![CDATA[
		
		var userloc = new Array ([0.000000, 0.000000, 3203, 'K E Woolfork', 'Augusta, Georgia'],[41.778481, -81.047646, 1, 'AIPman1', 'Dimestore HQ'],[40.217873, -85.437248, 146, 'LilRich', 'Muncie Indiana Suite 314'],[39.715572, -84.377060, 8243, 'Dan Taylor', 'Morning Meadows Farm'],[39.106594, -84.466461, 3577, 'TOMM GABBARD', 'the hide out'],[47.573154, -122.386086, 39, 'ArchetypeOne', 'my car...!'],[30.647364, -95.086670, 207, 'Cary', 'Unknown location'],[30.387314, -81.503021, 2945, 'PossumGirl', 'Calypso Island'],[33.732334, -84.925003, 8379, 'Jiles1', 'Villa Rica, Georgia'],[38.754459, -90.510155, 2947, 'Jon Klement', 'St. Charles, MO, USA'],[39.580597, -77.020805, 8367, 'Noppie', '695 Windsor Drive, Westminster, Md'],[33.641796, -86.378441, 8391, 'HalJones', 'Odenville, Alabama'],[32.739998, -117.252571, 6713, 'BrentJS', 'San Diego, CA'],[40.598576, -73.932281, 4725, 'PeterPalmiotti', 'Unknown location'],[30.290533, -81.392296, 8358, 'DreadPirateRobt', 'Crawling from pub to pub'],[35.212212, -97.423241, 16, 'samcclung65', 'this place here'],[37.926868, 23.642578, 2623, 'SEA', 'Athens'],[29.424349, -95.033798, 386, 'RHughes', 'Ross Hughes'],[29.965439, -90.372314, 8304, 'madger', 'Destrehan, La'],[42.244785, -88.596497, 57, 'DOC', 'Marengo'],[52.052490, -90.000000, 4541, 'nic carcieri', 'Warwick, RI'],[39.266285, -121.376953, 8990, 'thomas4d4', 'Unknown location'],[52.908901, -2.109375, 8427, 'LollyPop', 'Unknown location'],[0.000000, 0.000000, 19, 'Roger Foucault', 'Toronto, Ontario, Canada'],[44.964798, -93.295898, 8292, 'maverick', 'Minneapolis, MN'],[0.000000, 0.000000, 8459, 'deerslayer', 'Unknown location'],[41.836128, -81.048866, 2291, 'doofus', 'Flying Burrito Resteraunt'],[36.949890, -76.464844, 2314, 'hardtraveling', 'Unknown location'],[42.907875, -78.795525, 2529, 'DocAbsurd206', 'Absurd Asylum'],[38.548164, -121.464844, 13, 'ptahhotep', 'Sacramento, CA'],[41.136715, -73.423264, 7335, 'ThePerfessor', 'Unknown location'],[30.372875, -84.331055, 8392, 'randomscraps', 'Tallahassee, FL'],[42.884361, -77.286438, 8867, 'Perkillator', 'Unknown location'],[40.780540, -96.767578, 2908, 'Eric Williams', 'Lincoln'],[34.854736, -82.398018, 8299, 'c5comics1', 'Greenville, SC'],[41.574360, -73.410645, 9153, 'barrry2132', 'Unknown location'],[40.945011, -73.869843, 2533, 'Michael Grassia', 'Yonkers, New York'],[39.070377, -84.591980, 9160, 'garyg', 'Hellhio'],[41.175812, -73.398888, 2432, 'Jeff Fox', 'Unknown location'],[40.244713, -75.092285, 8191, 'Michael Finger', 'Jamison, PA'],[37.807667, -85.480049, 3142, 'SWAT', 'Where the magic happens.'],[38.611504, -78.800812, 5481, 'HeroMaker', 'Broadway VA'],[40.446945, -105.468750, 76, 'Squid Works', 'Denver, CO'],[51.207127, -102.476135, 75, 'starverse', 'Home'],[43.228100, -77.702286, 9179, 'StephenRL', 'Stephen Lindsay'],[0.000000, 0.000000, 9180, 'Baker', 'Unknown location'],[32.748283, -96.870209, 9182, 'RogerW', 'Roger A Wilbanks'],[-9.621737, -35.715179, 9170, 'Alistair', 'Unknown location'],[51.454006, -2.603760, 9195, 'Jennie Gyllblad', 'Bristol, United Kingdom'],[37.814125, -85.465393, 8108, 'emthelibrarian', 'Bardstown, KY'],[46.897152, -122.685013, 313, 'Miracula', 'Rainier, Washington'],[31.953327, -110.961914, 9196, 'Adam Black', 'The goddamned desert'],[37.810841, -85.476524, 9198, 'Loki_Yetto', 'Bardstown'],[40.720982, -73.794991, 2537, 'Fred Duran', 'Queens, NY'],[42.244785, -89.099121, 9213, 'The OverDrone', 'Rockford, Il'],[38.993572, -84.528809, 8424, 'Areophile', 'Erlanger, KY'],[47.187759, -122.443481, 4393, 'Mark Monlux', 'Tacoma']);
		
		function createMarker(point, id, name, loc){
			var marker = new GMarker(point, Icon);
			GEvent.addListener(marker, 'click', function() {
				marker.openInfoWindowHtml('Member Name: <a href="http://www.dimestoreproductions.com/user.php?id.'+ id +'"><b>'+ name +'</b></a><br />Location: '+ loc);
			});
			return marker;
		}
		
		function add_user(){
			for (var i = 0; i < userloc.length; i++) {
				var point = new GLatLng(userloc[i][0], userloc[i][1]);
				var marker = createMarker(point, userloc[i][2], userloc[i][3], userloc[i][4]);
				map.addOverlay(marker);
			}
		}
		
		////map

		var map = new GMap2(document.getElementById('map'));
		map.setCenter(new GLatLng(25,0), 1);
		map.addControl(new GMapTypeControl(1));
		map.addControl(new GLargeMapControl());

		map.enableContinuousZoom();
		map.enableDoubleClickZoom();

		var ovSize=new GSize(100, 100);
		var ovMap=new GOverviewMapControl(ovSize);
		map.addControl(ovMap);
		var mini=ovMap.getOverviewMap();
	
		map.hideControls();
		GEvent.addListener(map, 'mouseover', function(){
			map.showControls();
		});
		GEvent.addListener(map, 'mouseout', function(){
			map.hideControls(); 
		});

		var Icon = new GIcon();
		Icon.image = '/e107_plugins/mapme/images/red.png';
		Icon.shadow = '/e107_plugins/mapme/images/shadow.png';
		Icon.iconSize = new GSize(12, 20);
		Icon.shadowSize = new GSize(22, 20);
		Icon.iconAnchor = new GPoint(6, 20);
		Icon.infoWindowAnchor = new GPoint(5, 1);
		add_user();
	
		//]]>
		