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

function load_special_map_data() {
   if (GBrowserIsCompatible()) {
      var icon = new GIcon();
      icon.image = "/halloween/maps/2007/halloween_decorations-65x49.jpg";
      icon.iconSize = new GSize(65,49);
      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/2007/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:120px; height:90px;' src='/halloween/maps/2007/halloween_decorations-120x90.jpg'></td><td style='font-size:14px; font-family:cursive; font-weight:bold;' valign='top'>View & Control the<div style='color:#E5B5FF;'>Halloween Display</div><div style='color:#FFA500;margin-top:20px;'>Homer says D'OH!</div></td></tr></table>"),
         new GInfoWindowTab("Your House", "<table><tr><td valign='top'><img style='width:120px; height:90px;' src='/halloween/maps/2007/skull-120x90.jpg'></td><td width='10'></td><td style='font-size:14px; font-family:cursive; font-weight:bold;' valign='top'>The Skull marks<br>the spot where<br>your House is!<br>BOO!!! ;-)</td></tr></table>")
      ];
      map.openInfoWindowTabsHtml(new GLatLng(40.0672,-105.2194),infoTabs,opts);
   }
}
