	var map;    function initialize() {      if (GBrowserIsCompatible()) {        map = new GMap2(document.getElementById("map_canvas"));        map.setCenter(new GLatLng(45.0, -89.7), 7);        map.addControl(new GSmallMapControl());        map.addControl(new GMapTypeControl());       	   southernR = "http://maps.google.com/maps/ms?f=q&hl=en&geocode=&ie=UTF8&msa=0&output=nl&msid=101404251504236953721.0004529fed128216c20bd";		northernR = "http://maps.google.com/maps/ms?f=q&hl=en&geocode=&ie=UTF8&msa=0&output=nl&msid=101404251504236953721.0004529ffb151ab98c817";		doorR = "http://maps.google.com/maps/ms?f=q&hl=en&geocode=&ie=UTF8&msa=0&output=nl&msid=101404251504236953721.0004529fed6977e3f0112";				outline = "http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&output=nl&msid=101404251504236953721.0004584bb52b41ea5bd46";		cities = "http://maps.google.com/maps/ms?f=q&hl=en&geocode=&ie=UTF8&msa=0&output=nl&msid=101404251504236953721.0004528f6b55b47abe35c";				outlineXml = new GGeoXml(outline);		southernX = new GGeoXml(southernR);		northernX = new GGeoXml(northernR);		doorX = new GGeoXml(doorR);				cityX = new GGeoXml(cities);				map.addOverlay(southernX);		map.addOverlay(northernX);		map.addOverlay(doorX);		map.addOverlay(outlineXml);		      }    }