You've only defined aC as a local variable inside of function main(). So if course it will not be visible in any other context.
If you're the one that added the main() wrapper it should be obvious why that caused things to break. Without that wrapper aC would be declared in the global scope, and thus visible from any context.
If you want to keep your main() function and have the code work, remove the var keyword from the var aC = ... line.
You've also seem to have code that tries to make use of aC before main() is actually called. Note that this will not work, because aC will not be defined in any scope until after main() has been called. So lines like this one:
$(document.documentElement).keydown(aC.onKeyDown);
...are going to error out. You need to move the call to main() so that it executes before any such code. Or move any such code so that it is after the call to main(), same difference.