@sliprock
I've checked it again, because I thought it didn't works
because tracker using <iframe> tag
But it works fine.

Here is some simple checking, to do:
First don't include your own box, just use FS box
[spoiler]var x = ['2', '8'];
var y = ['content_2', 'content_8'];
var z = [];
tflAccordion(x,y,z);[/spoiler]
If it works fine, then add your own box [b]one at a time[/b]
[spoiler]addBox("TrackerHeader",TRACKER.div.innerHTML,"tracker","right");
var x = ['2', '8','tracker'];
var y = ['content_2', 'content_8','content_tracker'];
var z = [];
tflAccordion(x,y,z);[/spoiler]
If it works add another box, if not then you know which box is not working
Place an alert box to see if the Content_ID is available
[quote]addBox('TrackerHeader',TRACKER.div.innerHTML,'tracker','right');
[b]alert($('content_tracker').innerHTML);[/b]
var x = ['2', '8','tracker'];
...
...[/quote]
If it show [b]undefined [/b]then the problem is with Content_ID
Don't forget addBox() [b]first[/b], tflAccordion() [b]later[/b]
Hope, this will help you