
//default mapType
var DEFAULT_MAP_TYPE = G_HYBRID_MAP; // v2

//zoom converter -- old/new: (new = 17 - old)
// 0    1    2    3    4    5    6    7   8
//17   16   15   14   13   12   11   10   9


//default map size/loc
var START_PT = new GLatLng(47.323931, -90.922852);
var START_ZOOM = 8;

//menusIDs
//Duluth//TwoHrbrs//SilverBay//Schroeder//GrdMarais

Duluth_PT = new GLatLng(46.755387, -92.034531);
Duluth_ZM = 11;

TwoHrbrs_PT = new GLatLng(46.981658, -91.731720);
TwoHrbrs_ZM = 11;

SilverBay_PT = new GLatLng(47.250339, -91.270294);
SilverBay_ZM = 11;

Schroeder_PT = new GLatLng(47.527866, -90.922852);
Schroeder_ZM = 11;

GrdMarais_PT = new GLatLng(47.796552,-90.20462);
GrdMarais_ZM = 10;

//baseIcon
// Create a base icon for all of our markers that specifies the
// shadow, icon dimensions, etc.
var baseIcon = new GIcon();
baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
baseIcon.iconSize = new GSize(20, 34);
baseIcon.shadowSize = new GSize(37, 34);
baseIcon.iconAnchor = new GPoint(9, 34);
baseIcon.infoWindowAnchor = new GPoint(9, 2);
baseIcon.infoShadowAnchor = new GPoint(18, 25);



