﻿var index = {
    init: function() {
        $('#index').load('/page/form/' + ss.lang.get.current() + '/' + ss.core.get.loc() + '/system-homepage.htm', function() {
            ss.ui.init();
            ss.on.progress.content();
        });
    }
}
g.init('app',function(){
    index.init();  
    ss.on.progress.content = function() {
        if (++ss.done.content == 1) ss.on.progress();
    }
});