function addChild(event) {
	var link = $get(event.target.id);
	var p = $get(link.custom);
	if (p !== null) {
		p.style.display = "";
		link.custom = p.next;
	}
	if (link.custom === '')
		link.style.display = "none";
}
