function findKeys(object, result){
result = result || [];
var keys = [];
$.each(object, function(index, value){
keys.push(index);
if($.isObject(value))
findKeys(object, result);
});
result.push(keys);
return result;
}
var data = findKeys(Config);