var map = null;
var nanIcon = null;

function initialize() {
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map_canvas"));
		var thisLat = $('#main #lat').text();
		var thisLng = $('#main #lng').text();
    var center = new GLatLng(thisLat,thisLng);
    map.setCenter(center, 15);

    nanIcon = new GIcon(G_DEFAULT_ICON);
		nanIcon.image = '/sites/all/themes/nan/images/nan-marker.png';
		nanIcon.shadow = '/sites/all/themes/nan/images/nan-marker-shadow.png';
		nanIcon.highlight = '/sites/all/themes/nan/images/nan-marker-hover.png';
		nanIcon.iconSize = new GSize(28, 38);
		nanIcon.shadowSize = new GSize(44, 39);
		nanIcon.iconAnchor = new GPoint(13, 38);
	
		var marker = new GMarker(center,{icon:nanIcon});
		map.addOverlay(marker);
	}
}




