So I want to have objects in objects e.g.
1. var Parent={
2. var Child1 = {
3. funct:function(){
4. ...
5. },
6. funct2:function(){
7. ...
8. }
9. },
10. var Child2 = {
11. funct3:function(){
12. ...
13. }
14. }
15. }
so I can do something like Parent.Child1.funct() ...etc. Is there a way to do this?