UI Tabs - Loading pages recursively with ajax that contain tabs

UI Tabs - Loading pages recursively with ajax that contain tabs

Hello,
I'm trying to load pages recursively that contain tabs via ajax tab call.

I got a main page that loads a childpage and the childpage loads the childchildpage. 
All pages contain tabs.

The childpage works correctly after I added the ctabs via the tabload event

$('#tabs').bind('tabsload', function(event, ui) {
//alert("tabs loaded");
$("#ctabs").tabs();
});


My problem is that this approach does not work with the chidchildpage, because the javascript will not be executed in the childpage.


Is there a way to make it work for the childchildpage? If yes, I would be very happy about a code example becaue I'm quite new with jquery.

Thank you very much in advance!

I attached an example of the scenario.