Tab navigation links within an accordion..

Tab navigation links within an accordion..


Hello,
I'm wondering if it's possible to navigate Tabs from within an
accordion using an HTML structure like the one below...
    <div id="accordian">
        <h3><a href="#">First set of links</a></h3>
        <div>
            <a href="#tabs-1">Navigate to '#tabs-1'</a>
        </div>
        <h3><a href="#">Second set of links</a></h3>
        <div>
            <a href="#tabs-2">Navigate to '#tabs-2'</a>
            <a href="#tabs-3">Navigate to '#tabs-3'</a>
            <a href="#tabs-4">Navigate to '#tabs-4'</a>
        </div>
    </div>
    <div id="tabs-1"></div>
    <div id="tabs-2"></div>
    <div id="tabs-3"></div>
    <div id="tabs-4"></div>
The above won't work as the tab links have to be within an unordered
list that is the first child of the DIV upon which tabs was called.
What's a practical way of achieving tab navigation from within an
accordion?
Thanks,
Nikola