function getMap() {
	if (!document.getElementById("map")) return false;
	if (GBrowserIsCompatible()) {
       	var map = new GMap2(document.getElementById("map"));
		var dcif = new GLatLng(45.2075, -87.1178);
       	map.setCenter(dcif, 11);
		map.openInfoWindow(map.getCenter(),
							document.getElementById("info"));
		map.addControl(new GSmallMapControl());
	}
}
$(document).ready(getMap);
$(document).unload(GUnload);

