/**
 * main setup
 */

var spinnerImagePath = themepath + jsiFolder + loadIconImage;


// Jay, we have Javascript!
window.document.write('<link rel="stylesheet" type="text/css" media="screen" href="' + tplpath + 'activatejs.css" />');

// Init Class
mousSystem = {
    scripts: new Array(
        'behaviours'
    ),
    start: function() {
	    //Bloxpress.initialize();
    },
    include: function(jsFile) {
        window.document.write('<script type="text/javascript" src="' + tplpath + '/javascript/mousscript/' + jsFile + '"></script>');
    },
    run: function() {
        for (var i = 0; i < this.scripts.length; i++) this.include(this.scripts[i] + '.js'); runFast = new FastInit(function() { mousSystem.start() });
    }
}

// gogogo!
mousSystem.run();

