/*
// File: Project Common JS
// Copyright (c)2008 Nathan Nunn, Burly House <tech@burlyhouse.net>.
// All rights reserved. Revision history at base of file.
//
// CONFIDENTIAL - DO NOT DISTRIBUTE
*/

// init global
var CurricSys = new Object();
CurricSys.groups			= null;			// access groups
CurricSys.entries			= null;			// course entries for loaded module

// init runtime
var RTime = new Object();
RTime.cached				= null;			// temp cache
RTime.errors				= null;			// runtime errors

             /*.___________________________.
              / Revision History    v1.0d1 |
.____________/_____________________________!__________________________________. 

v1.0d1
nnunn2008-07-01:
- add global var 'CurricSys'
- init
*/
