Accordion next/prev buttons

Accordion next/prev buttons

I am using accordion with a form(sections) on a site that I am working on and was wondering how I can add next / prev buttons in each section of the form. I know that accordion uses headers and that works fine but I have been asked to add next / prev buttons at the bottom of each section because it is apparently not obvious what to do. Here is my accordion call

<script type="text/javascript">
$(function() {
$("#accordion").accordion({
autoHeight: false,
collapsible:true,
});
});
</script>

I read some things about active and activate but I wasn't able to figure it out. any help would be appreciated.

Thanks