function null_arr(a) { for (var b = 0; b < a.length; b++) a[b] = typeof a[b] == "object" ? arguments.callee(a[b]) : null; return a };