Provides a simple way to call a function after a set amount of time (or frames). You can optionally pass any number of parameters to the function too.
//calls myFunction after 1 second and passes 2 parameters:
TweenLite.delayedCall(1, myFunction, ["param1", 2]);
function myFunction(param1, param2) {
//do stuff
}