or use the same table... with ParentID as an FKey back to itself. Then you could have a Type field that indicates if it's a Parent (0) or a child (1) record.... actually, you don't even need that... if the ParentID is 0 or NULL then it's a parent record... if it has a value, then you know it's a kid record.

-tg