function PutOnTop(marker,b) {
        return 1;
}

function load_special_map_data() {
   if (GBrowserIsCompatible()) {
      var icon = new GIcon();
      icon.image = "/christmas/maps/2006/alek-house.gif";
      icon.iconSize = new GSize(35,22);
      icon.iconAnchor = new GPoint(15,10);
      map.addOverlay(new GMarker(new GLatLng(40.0672,-105.2194),{icon:icon, zIndexProcess:PutOnTop}));


      var opts = new Object();
      // opts.pixelOffset = new GSize(200,200);
      // opts.maxWidth = 40;
      // pixelOffset "takes" ... but maxWidth does not - grrrrr!
      // map.openInfoWindowHtml(new GLatLng(40.0672,-105.2194), "<table><tr><td align='top'><img style='width:105px; height:73px;' src='/christmas/maps/2006/alek-house-large.gif'></td><td style='font-size:14px; font-family:cursive; font-weight:bold;' align='top'>View & Control<div style='color:#00B000;'>Christmas Lights</div><div style='color:#B00000;'>Homer says D'OH!</div></td></tr></table>",opts);

      var infoTabs = [
         new GInfoWindowTab("Alek's House", "<table><tr><td valign='top'><img style='width:105px; height:73px;' src='/christmas/maps/2006/alek-house-large.gif'></td><td style='font-size:14px; font-family:cursive; font-weight:bold;' valign='top'>View & Control<div style='color:#00B000;'>Christmas Lights</div><div style='color:#B00000;'>Homer says D'OH!</div></td></tr></table>"),
         new GInfoWindowTab("Your House", "<table><tr><td valign='top'><img style='width:38px; height:73px;' src='/christmas/maps/2006/your-tree-large.gif'></td><td width='10'></td><td style='font-size:14px; font-family:cursive; font-weight:bold;' valign='top'>Santa will look for<br>the Christmas Tree<br>to find your House.<br>HO HO HO!  ;-)</td></tr></table>")
      ];
      map.openInfoWindowTabsHtml(new GLatLng(40.0672,-105.2194),infoTabs,opts);

      var icon = new GIcon();
      icon.image = "/christmas/maps/2006/santa-sleigh.gif";
      icon.iconSize = new GSize(1024,35);
      icon.iconAnchor = new GPoint(715,-60);
      map.addOverlay(new GMarker(new GLatLng(79.8,71.8),icon));

      icon.iconAnchor = new GPoint(205,175);
      map.addOverlay(new GMarker(new GLatLng(-79.8,-108.2),icon));
   }
}
