/*
* Copyright(c) 2008
*
*/

// create application
fds = function() {

    // do NOT access DOM from here; elements don't exist yet

    // private variables

    // private functions

    // public space
    return {
        // public properties, e.g. strings to translate

        // public methods
        init : function() {
            fds.live.init();
            fds.abgTooltip.init();
        }

    }
}(); // end of app

// end of file
