Tabs and pagination

Tabs and pagination


Hello,
I am trying to fix a bug I have in my application that uses the tabs3
UI. Can some one please advise as to how I can proceed.
The site is http://uk.expert.travel
And the issue that I have is that if a user clicks on the Jobs tab,
here we have 6 job entries that are batched in 5 items.
So when you click on the view (>>) to view the 6th job entry, this
works.
But when you then click on the News tab, you get the message that
there is "Currently there is no news."
Whereas we have news! Which is locate http://uk.expert.travel/;view?batchstart=0
rather then http://uk.expert.travel/;view?batchstart=5
Is there a way to modify the javascript:
<script type="text/javascript">
var TABS_COOKIE = 'company_cookie';
$(function() {
$('#container-1
ul').tabs((parseInt($.cookie(TABS_COOKIE))) || 1,{click:
function(clicked) {
var lastTab = $
(clicked).parents("ul").find("li").index(clicked.parentNode) + 1;
$.cookie(TABS_COOKIE, lastTab, {path: '/'});
},
fxFade: true,
fxSpeed: 'fast',
fxSpeed: "normal"
});
});
</script>
so that when a user clicks on any of the tabs, the application resets
the or even removes the batchstart=x from the URI.
Thanks
Norman