
  // ================================================
  // fancybox
  // ================================================

    $(document).ready(function() {
      $("a.zoom").fancybox({
        "zoomSpeedIn"  : 200,
        "zoomSpeedOut" : 200
      });
    });

  // ================================================
  // image rotator
  // ================================================

    MochiKit.DOM.addLoadEvent(function () {

      if (Basis.top_images.length == 1) {

        MochiKit.DOM.getElement("main_image").src = Basis.top_images[0];

      } else {

        var options = {"fade"     : ((BrowserDetect.browser == "Explorer") ? false : true),
                       "duration" : 3500
                      };

          var container = Basis.image_rotator("main_image", Basis.top_images, options);        
        
        if (container) {

          container.style.position = "absolute";
          container.style.top      = "0px";

        } // end if

      } // end if

    });

  // ================================================
  // cufon
  // ================================================

    Cufon.replace('.cufon',     {fontFamily: 'Futura Md BT'});
    Cufon.replace('.cufon_map', {fontFamily: 'Futura Hv BT'});

  // ================================================

