That's cool Jack!
You might want to include the recent fixes to the JavaScript for the map for IE7
function createMarker(point,name,html,icon) {
var marker = new GMarker(point, {icon:icon});
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html, {maxWidth:250});
});
return marker;
}
and
var map = new GMap2(document.getElementById("map") ,
{ size: new GSize(620,480) } );
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.addControl(new GScaleControl());
map.setCenter(new GLatLng(44.71926117,-103.82946014), 3, G_NORMAL_MAP);
using your map.setCenter values instead.
Are you fetching a copy of the global-conditions.xml to your site? If so, make it on the 4s/9s by cron as the file is created on the 3s/8s.
Best regards,
Ken