google.load("maps", "2.x");

// Call this function when the page has been loaded
function initialize() {
	var map = new google.maps.Map2(document.getElementById("map"));
	//map.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
	
	map.setCenter(new google.maps.LatLng(44.25728,-88.346944), 14);
	map.addControl(new google.maps.SmallMapControl());

	// Create our "tiny" marker icon
	var albumIcon = new google.maps.Icon(G_DEFAULT_ICON);
	albumIcon.image = "../../js/images/gmap-marker.png";

	// Set up our GMarkerOptions object
	markerOptions = { icon:albumIcon };
	var point = new google.maps.LatLng(44.25728,-88.346944);
	map.addOverlay(new google.maps.Marker(point, markerOptions));

}
google.setOnLoadCallback(initialize);