function initialize()
{
  if (GBrowserIsCompatible()) {
	var ie_map = new GMap2(document.getElementById("ie_clubs_map"));
    ie_map.setCenter(new GLatLng(34.0100, -116.9700), 9);    
    ie_map.openInfoWindowHtml(ie_map.getCenter(), '<div style="width:210px; padding-right:10px;">Get listed on Inland Empire Cannabis Clubs today at <strong><a href="http://www.cannabisclubnetwork.com/" style="color:#060;">Cannabis Club Network</a></strong>.</div>');
    ie_map.addControl(new GSmallMapControl());
  }
}

/* Instantiate and initialize new GMap2 object
*/
//function initialize()
//{
//	var ie_map = new GMap2(document.getElementById("ie_clubs_map"));
	/* As Inland Empire is A region and not a city, cannabisClubsLocation
	 * in array declaration should be subsituted with literal 
	 * with the form `City, CA'
	 */
//	var cannabisClubsLocation = 'Inland Empire, CA';
//	var cannabisClubs = new Array();
	//var cannabisClubs = new Array(new Array('NAME', 'ST ADDRESS', cannabisClubsLocation, 'ZIP', <URL|null>));
	
//if (GBrowserIsCompatible()) {
	  //recenter
 //    ie_map.addControl(new GSmallMapControl());

//		for (i = 0; i < cannabisClubs.length; i++) {
//				setAddress(ie_map, cannabisClubs[i]);
//		}
//	}
//}

//function setAddress(map, cannabisClub)
//{
//alert('hello');
//	var clubName = cannabisClub[0];
//	var streetAddress = cannabisClub[1];
//	var location = cannabisClub[2];
//	var zipCode = cannabisClub[3];
//	var url = cannabisClub[4];
//	var address = streetAddress + ', ' + location + ', ' + zipCode
//	var geocoder = new GClientGeocoder();
	
//	geocoder.getLatLng(
//	address, function(point) {
//		if (!point) {
//			alert(address + " not found");
//		} else {
//			var marker = new GMarker(point);
//			GEvent.addListener(marker, "click", function() {
//				if (url)
//				marker.openInfoWindowHtml('<a href="../donny/' + url + '" class="goldMember">' + clubName + '</a><br />' + streetAddress + '<br />' + location + ', ' + zipCode);
//				else
//				marker.openInfoWindowHtml('<span class="silverMember">' + clubName + '</span><br />' + streetAddress + '<br />' + location + ', ' + zipCode);
//			});
//			map.addOverlay(marker);
//			}
//	});
//}