/* 
 Critical Section 
 -------------------------------------------------------------
 This file should always be included first. It contains info
 used by utils.js
*/

/**
  Event Chains
  ------------------------------------------------------------
  Allows us to place starter code as entries in an array.
  When all files are downloaded, all the functions inserted
  into the sysLoadChain will be executed in the order they
  were inserted
 **/
var sysLoadChain   = new Array();
var sysUnloadChain = new Array();