
google.load("maps", "2.x");

function add_markers() {

	mapobj = new google.maps.Map2(document.getElementById("map"));
	mapobj.addControl(new GSmallMapControl());
	mapobj.addControl(new GScaleControl());
	mapobj.addControl(new GOverviewMapControl());
	var center = new google.maps.LatLng(33.77,-84.37);
	mapobj.setCenter(center,10);

	var locations = [
		
			{

	
		"streetname": "Grand Hickory Dr",
	

	
		"subdivision": "Mulberry Park Ph 03",
	

	
		"zip": 30517,
	

	
		"hsr_url": "Http://projects.ajchomefinder.com/atlanta-home-sales-report/detail/gwinnett/30517",
	

	
		"price": "192,000",
	

	
		"date": "Dec 11, 2006",
	

	
		"city": "Braselton",
	

	
		"id": 835245,
	

	
		"coordinates": {"latitude": 34.125059445, "longitude": -83.820621505},
	

	
		"number": 7072,
	


	
	"zip_link": "http://homesales.ajchomefinder.com/homesales/zip/30517",
	

	
	"city_link": "http://homesales.ajchomefinder.com/homesales/city/braselton",
	

	
	"sub_link": "http://homesales.ajchomefinder.com/homesales/subdivision/30517/mulberry_park_ph_03",
	

	
	"street_link": "http://homesales.ajchomefinder.com/homesales/street/30517/grand_hickory_dr",
	

	
	"hsr_link": "http://projects.ajchomefinder.com/atlanta-home-sales-report/detail/Gwinnett/30517",
	

	
	"address_link": "http://homesales.ajchomefinder.com/homesales/street/30517/grand_hickory_dr/7072",
	

	"null":null
}

			
			,
			
		
			{

	
		"streetname": "Grand Hickory Dr",
	

	
		"subdivision": "",
	

	
		"zip": 30517,
	

	
		"hsr_url": "Http://projects.ajchomefinder.com/atlanta-home-sales-report/detail/gwinnett/30517",
	

	
		"price": "167,200",
	

	
		"date": "Nov 18, 2004",
	

	
		"city": "Braselton",
	

	
		"id": 765074,
	

	
		"coordinates": {"latitude": 34.125059445, "longitude": -83.820621505},
	

	
		"number": 7072,
	


	
	"zip_link": "http://homesales.ajchomefinder.com/homesales/zip/30517",
	

	
	"city_link": "http://homesales.ajchomefinder.com/homesales/city/braselton",
	

	

	
	"street_link": "http://homesales.ajchomefinder.com/homesales/street/30517/grand_hickory_dr",
	

	
	"hsr_link": "http://projects.ajchomefinder.com/atlanta-home-sales-report/detail/Gwinnett/30517",
	

	
	"address_link": "http://homesales.ajchomefinder.com/homesales/street/30517/grand_hickory_dr/7072",
	

	"null":null
}

			
		
	];
	
	center = new google.maps.LatLng(34.125059445,-83.820621505);
	
	var zoom = 16;
	
	window.mapobj.setCenter(center,zoom);
	

	var i;
	for(i=0;i<locations.length;i++) {
		var lat = locations[i].coordinates.latitude;
		var lng = locations[i].coordinates.longitude;
		var point = new google.maps.LatLng(lat,lng);
		var marker = new google.maps.Marker(point);
		GEvent.addListener(marker, "click", 
			create_info_closure(marker,locations[i]));
		mapobj.addOverlay(marker);
	}

}

google.setOnLoadCallback(add_markers);

