jQueryUI tabs( [options] ) options = load only trigger by first click

jQueryUI tabs( [options] ) options = load only trigger by first click


$("#tabsExt2").tabs(
{ cache:false,spinner:'Bitte warten..',
    load: function(e, ui) {
$('.fscboxInnerHead > span > a').click(function() {
$(ui.panel).load($.data(ui.tab,
'load.tabs').replace("page=1", $(this).attr('href')));
return false;
});
}
});
all "a" have at first load replace with "$(this).attr('href')". if i
click a href in current tabscontent, new content don't replace "a". i
need help. how a can trigger "load"
<< hans