(function($) {

    window.theme = {

        init: function() {

            window.theme.global.init();
        },

        global: {

            init: function() {


            }

        }

    };


    $(document).ready(function() {

        window.theme.init();

    });

})(jQuery);


