UI-tabs external link in current tab problem

UI-tabs external link in current tab problem


Hi,
I've got a tab and load external page for each
In thisexternal page there are links inside panel.
I use this code for always open multiple link in current panel active.
It's ok when I am on the first tab, but internal link don't work in
other tab.
When a put a alert on "ui.tab.id" it's always the same id.
Don't really understand...Could you help me please
Thanks in advance
$(function() {
$('#tabs').tabs({
load: function(event, ui) {
$('a', ui.panel).live( "click", function() {
$(ui.panel).load(this.href);
return false;
});
}
});
});
        <div id="tabs">
            <ul>
                <li><a href="page1.html">First</a></li>
                <li><a href="page2.html">Second</a></li>
                <li><a href="page3.html">Third</a></li>
            </ul>
        </div>