function initialize() {
	var map = new GMap2(document.getElementById("map_canvas"));
	map.setCenter(new GLatLng(44.883, -93.330113), 15);
	map.addControl(new GSmallMapControl());
	
	// http://econym.org.uk/gmap/zindex.htm
	function orderOfCreation(marker,b) {
		return 1;
	}


	// Create the "southdale" marker icon
	var southdaleIcon = new GIcon();
	southdaleIcon.image = "http://priorityresults.com/images/pin-southdale.png";
	southdaleIcon.shadow = "http://priorityresults.com/images/pin-shadow.png";
	southdaleIcon.iconSize = new GSize(119, 70);
	southdaleIcon.shadowSize = new GSize(119, 70);
	southdaleIcon.iconAnchor = new GPoint(60, 70);

	southdaleMarkerOptions = { icon:southdaleIcon,zIndexProcess:orderOfCreation};

	// Create the "priority" marker icon
	var priorityIcon = new GIcon();
	priorityIcon.image = "http://priorityresults.com/images/pin-priority.png";
	priorityIcon.shadow = "http://priorityresults.com/images/pin-shadow.png";
	priorityIcon.iconSize = new GSize(119, 70);
	priorityIcon.shadowSize = new GSize(119, 70);
	priorityIcon.iconAnchor = new GPoint(60, 70);

	priorityMarkerOptions = { icon:priorityIcon,zIndexProcess:orderOfCreation };
		      
	var southdale = new GLatLng(44.880556, -93.326111);
	var priority = new GLatLng(44.881136, -93.330113);
	
	map.addOverlay(new GMarker(southdale, southdaleMarkerOptions));
	map.addOverlay(new GMarker(priority, priorityMarkerOptions));
 
}
