// Tree structure definition
var TREE_NODES = [
	["</a><table class=\"title\"><tr><td>Name</td></tr></table><a>", null, null,
		["</a><table class=\"content\">\n"
		+ "<tr><th>First:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Middle:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Last:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "</table><a>", null, null]
	],
	["</a><table class=\"title\"><tr><td>Address</td></tr></table><a>", null, null,
		["</a><table class=\"content\">\n"
		+ "<tr><th>Address 1:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Address 2:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Country:</th><td><select><option>Southern Eldorado</option><option>Western Eldorado</option><option>Northern Eldorado</option><option>Eastern Eldorado</option></select><tr>\n"
		+ "<tr><th>Zip Code:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "</table><a>", null, null]
	],
	["</a><table class=\"title\"><tr><td>Phones</td></tr></table><a>", null, null,
		["</a><table class=\"content\">\n"
		+ "<tr><th>Home:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Mobile:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "<tr><th>Work:</th><td><input type=\"text\" class=\"text\" /><tr>\n"
		+ "</table><a>", null, null]
	]
];
