is it possible to do something like the following?
Code:
for (var i=0; i<variableAmt; i++) {
	var ["temp" + [i]] = new Object();
}
basically to create
temp0, temp1, temp2, etc... until it reaches the variable amount?

thanks in advance,

ChaseNYC